Skip to content

Commit

Permalink
Cosmetic changes in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian MacLennan committed Nov 13, 2011
1 parent 388b770 commit 7820ae5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/suite/joomla/github/JGithubGistsTest.php
Expand Up @@ -120,12 +120,12 @@ public function testEditComment()
$returnData->code = 200;
$returnData->body = $this->sampleString;

$pull = new stdClass;
$pull->body = 'This comment is now even more insightful';
$gist = new stdClass;
$gist->body = 'This comment is now even more insightful';

$this->client->expects($this->once())
->method('patch')
->with('/gists/comments/523', json_encode($pull))
->with('/gists/comments/523', json_encode($gist))
->will($this->returnValue($returnData));

$this->assertThat(
Expand Down

0 comments on commit 7820ae5

Please sign in to comment.