From d8603c2f1f451672274563f0d9620d19c6c699b3 Mon Sep 17 00:00:00 2001 From: Pierre Grimaud Date: Fri, 17 Apr 2020 21:34:02 +0200 Subject: [PATCH] Fix typos --- test/Github/Tests/Api/RepoTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Github/Tests/Api/RepoTest.php b/test/Github/Tests/Api/RepoTest.php index ff1fe4f7e6e..4bdfb419edd 100644 --- a/test/Github/Tests/Api/RepoTest.php +++ b/test/Github/Tests/Api/RepoTest.php @@ -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')); } /**