From 1f8f1c3776acfaf698e007e4ce79aa84e8f23360 Mon Sep 17 00:00:00 2001 From: Dariusz Ruminski Date: Thu, 22 Jan 2015 13:26:31 +0100 Subject: [PATCH] Code MUST use an indent of 4 spaces, and MUST NOT use tabs for indenting. --- test/Github/Tests/Api/RepoTest.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/Github/Tests/Api/RepoTest.php b/test/Github/Tests/Api/RepoTest.php index 90366110110..d14df11e650 100644 --- a/test/Github/Tests/Api/RepoTest.php +++ b/test/Github/Tests/Api/RepoTest.php @@ -422,15 +422,15 @@ public function shouldGetReleasesApiObject() */ public function shouldGetCommitActivity() { - $expectedArray = array(array('days' => array(0, 3, 26, 20, 39, 1, 0), 'total' => 89, 'week' => 1336280400)); + $expectedArray = array(array('days' => array(0, 3, 26, 20, 39, 1, 0), 'total' => 89, 'week' => 1336280400)); - $api = $this->getApiMock(); - $api->expects($this->once()) - ->method('get') - ->with('repos/KnpLabs/php-github-api/stats/commit_activity') - ->will($this->returnValue($expectedArray)); + $api = $this->getApiMock(); + $api->expects($this->once()) + ->method('get') + ->with('repos/KnpLabs/php-github-api/stats/commit_activity') + ->will($this->returnValue($expectedArray)); - $this->assertEquals($expectedArray, $api->activity('KnpLabs', 'php-github-api')); + $this->assertEquals($expectedArray, $api->activity('KnpLabs', 'php-github-api')); } protected function getApiClass()