Skip to content

Commit 269049a

Browse files
committed
Fix test
1 parent 7e209dd commit 269049a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/system/Router/RoutingOptimizationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public function testBothModesEnabled(): void
151151

152152
// Test fallback to auto-routing
153153
$router->handle('mycontroller');
154-
$this->assertSame(Mycontroller::class, $router->controllerName());
154+
$this->assertSame('\\' . Mycontroller::class, $router->controllerName());
155155
$this->assertSame('getIndex', $router->methodName());
156156
}
157157

0 commit comments

Comments
 (0)