We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72bf48c commit c58271aCopy full SHA for c58271a
test/Gitlab/Tests/Api/RepositoriesTest.php
@@ -223,6 +223,8 @@ public function shouldUpdateRelease()
223
*/
224
public function shouldGetReleases()
225
{
226
+ $project_id = 1;
227
+
228
$expectedArray = array(
229
array(
230
'tag_name' => 'v0.2',
@@ -238,7 +240,7 @@ public function shouldGetReleases()
238
240
->will($this->returnValue($expectedArray))
239
241
;
242
- $this->assertEquals($expectedArray, $api->releases());
243
+ $this->assertEquals($expectedArray, $api->releases($project_id));
244
}
245
246
/**
0 commit comments