Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin Alexander Rüll committed Feb 7, 2022
1 parent bc93867 commit a1f9686
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/Github/Tests/Api/RepoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ public function shouldCreateRepositoryUsingNameOnly()
'description' => '',
'homepage' => '',
'visibility' => 'public',
'private' => false,
'has_issues' => false,
'has_wiki' => false,
'has_downloads' => false,
Expand All @@ -122,6 +123,7 @@ public function shouldCreateRepositoryForOrganization()
'description' => '',
'homepage' => '',
'visibility' => 'public',
'private' => false,
'has_issues' => false,
'has_wiki' => false,
'has_downloads' => false,
Expand Down Expand Up @@ -153,6 +155,7 @@ public function shouldCreateRepositoryWithInternalVisibility()
'auto_init' => false,
'has_projects' => true,
'visibility' => 'internal',
'private' => false,
])
->will($this->returnValue($expectedArray));

Expand Down Expand Up @@ -372,6 +375,7 @@ public function shouldCreateUsingAllParams()
'description' => 'test',
'homepage' => 'http://l3l0.eu',
'visibility' => 'private',
'private' => true,
'has_issues' => false,
'has_wiki' => false,
'has_downloads' => false,
Expand Down

0 comments on commit a1f9686

Please sign in to comment.