diff --git a/tests/system/CodeIgniterTest.php b/tests/system/CodeIgniterTest.php index f3f8bf7442f8..4535096ccc61 100644 --- a/tests/system/CodeIgniterTest.php +++ b/tests/system/CodeIgniterTest.php @@ -626,6 +626,7 @@ public function testPageCacheSendSecureHeaders() /** * @param array|bool $cacheQueryStringValue + * * @dataProvider cacheQueryStringProvider * * @see https://github.com/codeigniter4/CodeIgniter4/pull/6410 @@ -655,7 +656,7 @@ public function testPageCacheWithCacheQueryString($cacheQueryStringValue, int $e $routes->add($testingUrl, static function () { CodeIgniter::cache(0); // Dont cache the page in the run() function because CodeIgniter class will create default $cacheConfig and overwrite settings from the dataProvider $response = Services::response(); - $string = 'This is a test page, to check cache configuration'; + $string = 'This is a test page, to check cache configuration'; return $response->setBody($string); });