Skip to content

Commit a8bf7ad

Browse files
committed
fix test
1 parent 2722f8a commit a8bf7ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/system/CodeIgniterTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,7 @@ public function testRouteAttributeFilterIntegration(): void
10621062
$this->assertStringContainsString(':after_filter_ran', (string) $output);
10631063
}
10641064

1065-
public function testRouteAttributeFilterWithArgsIntegration(): void
1065+
public function testRouteAttributeFilterWithParamsIntegration(): void
10661066
{
10671067
$_SERVER['argv'] = ['index.php', 'attribute/filteredWithParams'];
10681068
$_SERVER['argc'] = 2;
@@ -1087,7 +1087,7 @@ public function testRouteAttributeFilterWithArgsIntegration(): void
10871087

10881088
// Verify filter ran before (modified request body) and after (appended to response)
10891089
$this->assertStringContainsString('Filtered: before_filter_ran(arg1,arg2):', (string) $output);
1090-
$this->assertStringContainsString(':(arg1,arg2)after_filter_ran', (string) $output);
1090+
$this->assertStringContainsString(':after_filter_ran(arg1,arg2)', (string) $output);
10911091
}
10921092

10931093
public function testRouteAttributeRestrictIntegration(): void

0 commit comments

Comments
 (0)