Skip to content

Commit

Permalink
Fix assertion order.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed May 13, 2015
1 parent 2d9867f commit d3e6620
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestCase/Network/Http/ClientTest.php
Expand Up @@ -244,7 +244,7 @@ public function testGetQuerystringString()
'Category' => ['id' => [2, 3]]
];
$result = $http->get('/search', http_build_query($data));
$this->assertSame($result, $response);
$this->assertSame($response, $result);
}

/**
Expand Down

0 comments on commit d3e6620

Please sign in to comment.