Skip to content

Commit 7646e3f

Browse files
committed
test: refactor by rector
1 parent 942dd76 commit 7646e3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/system/Router/AutoRouterImprovedTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ public static function provideTranslateUriToCamelCase(): iterable
514514
'subfolder-controller-and-method-wz-dash' => [
515515
'subfolder/sub/blog-controller/some-method',
516516
'Subfolder/Sub/',
517-
'\CodeIgniter\Router\Controllers\Subfolder\Sub\BlogController',
517+
'\\' . \CodeIgniter\Router\Controllers\Subfolder\Sub\BlogController::class,
518518
'getSomeMethod',
519519
2,
520520
3,
@@ -523,7 +523,7 @@ public static function provideTranslateUriToCamelCase(): iterable
523523
'subfolder-wz-dash-controller-and-method-wz-dash' => [
524524
'sub-dir/blog-controller/some-method',
525525
'SubDir/',
526-
'\CodeIgniter\Router\Controllers\SubDir\BlogController',
526+
'\\' . \CodeIgniter\Router\Controllers\SubDir\BlogController::class,
527527
'getSomeMethod',
528528
1,
529529
2,

0 commit comments

Comments
 (0)