Skip to content

Commit

Permalink
minor #862 Fix typos in test/Github/Tests/Api/RepoTest.php (pgrimaud)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.13.x-dev branch.

Discussion
----------

Hello,

This PR will fix : 

- 2 typos in `test/Github/Tests/Api/RepoTest.php`



Cheers! 🤖

Commits
-------

d8603c2 Fix typos
  • Loading branch information
acrobat authored Apr 19, 2020
2 parents 9c51657 + d8603c2 commit 4f388bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Github/Tests/Api/RepoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -378,10 +378,10 @@ public function shouldNotDelete()
$api = $this->getApiMock();
$api->expects($this->once())
->method('delete')
->with('/repos/l3l0Repo/uknown-repo')
->with('/repos/l3l0Repo/unknown-repo')
->will($this->returnValue($expectedArray));

$this->assertEquals($expectedArray, $api->remove('l3l0Repo', 'uknown-repo'));
$this->assertEquals($expectedArray, $api->remove('l3l0Repo', 'unknown-repo'));
}

/**
Expand Down

0 comments on commit 4f388bc

Please sign in to comment.