Skip to content

Commit

Permalink
Fix test names
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Dec 14, 2024
1 parent 2e084f3 commit 88c7c0b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/tests/StaticAnalysis/Value/ClassTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function testHasNamespacedName(): void
$this->assertSame('example\Example', $this->class()->namespacedName());
}

public function testHasNamespaced(): void
public function testHasNamespace(): void
{
$this->assertSame('example', $this->class()->namespace());
}
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/StaticAnalysis/Value/FunctionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function testHasNamespacedName(): void
$this->assertSame('example\example', $this->function()->namespacedName());
}

public function testHasNamespaced(): void
public function testHasNamespace(): void
{
$this->assertSame('example', $this->function()->namespace());
}
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/StaticAnalysis/Value/InterfaceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function testHasNamespacedName(): void
$this->assertSame('example\Example', $this->interface()->namespacedName());
}

public function testHasNamespaced(): void
public function testHasNamespace(): void
{
$this->assertSame('example', $this->interface()->namespace());
}
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/StaticAnalysis/Value/TraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function testHasNamespacedName(): void
$this->assertSame('example\Example', $this->trait()->namespacedName());
}

public function testHasNamespaced(): void
public function testHasNamespace(): void
{
$this->assertSame('example', $this->trait()->namespace());
}
Expand Down

0 comments on commit 88c7c0b

Please sign in to comment.