Skip to content

Commit d3bc269

Browse files
committed
Bugfixed controller name in tests
1 parent 73f1e0c commit d3bc269

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Admin/Extension/WorkflowExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function testConfigureRoutes()
3636
self::assertSame('/pull-request/{id}/workflow/transition/{transition}/apply', $route->getPath());
3737
self::assertNotEmpty($defaults = $route->getDefaults());
3838
self::assertArrayHasKey('_controller', $defaults);
39-
self::assertSame(WorkflowController::class.':workflowApplyTransitionAction', $defaults['_controller']);
39+
self::assertSame(WorkflowController::class.'::workflowApplyTransitionAction', $defaults['_controller']);
4040
self::assertArrayHasKey('_sonata_admin', $defaults);
4141
self::assertSame('pull_request', $defaults['_sonata_admin']);
4242
}

0 commit comments

Comments
 (0)