@@ -86,17 +86,17 @@ public function testLoadWithImport()
8686 public function testLoadLocalized ()
8787 {
8888 $ loader = new XmlFileLoader (new FileLocator (array (__DIR__ .'/../Fixtures ' )));
89- $ routeCollection = $ loader ->load ('localised .xml ' );
89+ $ routeCollection = $ loader ->load ('localized .xml ' );
9090 $ routes = $ routeCollection ->all ();
9191
9292 $ this ->assertCount (2 , $ routes , 'Two routes are loaded ' );
9393 $ this ->assertContainsOnly ('Symfony\Component\Routing\Route ' , $ routes );
9494
95- $ this ->assertEquals ('/route ' , $ routeCollection ->get ('localised .fr ' )->getPath ());
96- $ this ->assertEquals ('/path ' , $ routeCollection ->get ('localised .en ' )->getPath ());
95+ $ this ->assertEquals ('/route ' , $ routeCollection ->get ('localized .fr ' )->getPath ());
96+ $ this ->assertEquals ('/path ' , $ routeCollection ->get ('localized .en ' )->getPath ());
9797 }
9898
99- public function testLocalisedImports ()
99+ public function testLocalizedImports ()
100100 {
101101 $ loader = new XmlFileLoader (new FileLocator (array (__DIR__ .'/../Fixtures/localized ' )));
102102 $ routeCollection = $ loader ->load ('importer-with-locale.xml ' );
@@ -109,7 +109,7 @@ public function testLocalisedImports()
109109 $ this ->assertEquals ('/the-prefix/suffix ' , $ routeCollection ->get ('imported.en ' )->getPath ());
110110 }
111111
112- public function testLocalisedImportsOfNotLocalizedRoutes ()
112+ public function testLocalizedImportsOfNotLocalizedRoutes ()
113113 {
114114 $ loader = new XmlFileLoader (new FileLocator (array (__DIR__ .'/../Fixtures/localized ' )));
115115 $ routeCollection = $ loader ->load ('importer-with-locale-imports-non-localized-route.xml ' );
0 commit comments