Browse Source

Fixes argument order

Thomas von Hassel 11 years ago
parent
commit
b8d4eda592
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Routing/RouterTest.php

+ 1 - 1
tests/TestCase/Routing/RouterTest.php

@@ -2216,7 +2216,7 @@ class RouterTest extends TestCase {
 			'slug' => 'the-best',
 			'pass' => [],
 		];
-		$this->assertEquals($result, $expected);
+		$this->assertEquals($expected, $result);
 	}
 
 /**