Skip to content

Commit

Permalink
Merge pull request #4211 from darxmac/hotfix/test-correct-arguement-o…
Browse files Browse the repository at this point in the history
…rder

Fixes argument order for assertEquals in RouterTest
  • Loading branch information
ADmad committed Aug 9, 2014
2 parents 22ac3e1 + b8d4eda commit 68757df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Routing/RouterTest.php
Expand Up @@ -2216,7 +2216,7 @@ public function testUsingCustomRouteClass() {
'slug' => 'the-best',
'pass' => [],
];
$this->assertEquals($result, $expected);
$this->assertEquals($expected, $result);
}

/**
Expand Down

0 comments on commit 68757df

Please sign in to comment.