Skip to content

Commit 458a83b

Browse files
committed
Refactor WallaTest methods to use snake_case naming convention for improved consistency and readability.
1 parent a7a4caa commit 458a83b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Canonicals/Providers/WallaTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ protected function setUp(): void
1414
$this->provider = new Walla;
1515
}
1616

17-
public function testSupports(): void
17+
public function test_supports(): void
1818
{
1919
$this->assertTrue($this->provider->supports('walla.co.il'));
2020
$this->assertTrue($this->provider->supports('walla.com'));
@@ -24,7 +24,7 @@ public function testSupports(): void
2424
$this->assertFalse($this->provider->supports('example.com'));
2525
}
2626

27-
public function testGetCanonical(): void
27+
public function test_get_canonical(): void
2828
{
2929
$testCases = [
3030
// walla.co.il domain
@@ -62,12 +62,12 @@ public function testGetCanonical(): void
6262
}
6363
}
6464

65-
public function testGetCanonicalDomain(): void
65+
public function test_get_canonical_domain(): void
6666
{
6767
$this->assertEquals('walla.co.il', $this->provider->getCanonicalDomain());
6868
}
6969

70-
public function testGetSupportedDomains(): void
70+
public function test_get_supported_domains(): void
7171
{
7272
$domains = $this->provider->getSupportedDomains();
7373
$this->assertEquals(['walla.co.il', 'walla.com'], $domains);

0 commit comments

Comments
 (0)