From e7bd962eaa59f9431e286f72b487b24394d08aa1 Mon Sep 17 00:00:00 2001 From: kenjis Date: Sun, 12 Nov 2023 18:56:36 +0900 Subject: [PATCH] test: fix test method names --- tests/system/Test/FilterTestTraitTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system/Test/FilterTestTraitTest.php b/tests/system/Test/FilterTestTraitTest.php index 300bc2b47425..dda0ca0d3265 100644 --- a/tests/system/Test/FilterTestTraitTest.php +++ b/tests/system/Test/FilterTestTraitTest.php @@ -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]; @@ -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();