Skip to content

Commit

Permalink
test: fix test method names
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Nov 12, 2023
1 parent 7dc7087 commit e7bd962
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/system/Test/FilterTestTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function testGetCallerInvalidPosition(): void
$this->getFilterCaller('test-customfilter', 'banana');
}

public function testCallerSupportArray(): void
public function testCallerSupportsArray(): void
{
$this->filtersConfig->aliases['test-customfilter'] = [Customfilter::class];

Expand All @@ -73,7 +73,7 @@ public function testCallerSupportArray(): void
$this->assertSame('http://hellowworld.com', $result->getBody());
}

public function testCallerSupportClassname(): void
public function testCallerSupportsClassname(): void
{
$caller = $this->getFilterCaller(Customfilter::class, 'before');
$result = $caller();
Expand Down

0 comments on commit e7bd962

Please sign in to comment.