Skip to content

Commit

Permalink
Fixed CS error
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Jan 19, 2016
1 parent 3ee9f97 commit 2962b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Test/Case/Network/CakeRequestTest.php
Expand Up @@ -2457,7 +2457,7 @@ public function testMethodOverrideEmptyData()
$request = new CakeRequest('/posts/edit/1');
$this->assertEmpty($request->data);

$_POST= array('foo' => 'bar');
$_POST = array('foo' => 'bar');
$_SERVER['HTTP_X_HTTP_METHOD_OVERRIDE'] = 'GET';
$request = new CakeRequest('/posts/edit/1');
$this->assertEmpty($request->data);
Expand Down

0 comments on commit 2962b38

Please sign in to comment.