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 2112ae3 commit 0eed1d1Copy full SHA for 0eed1d1
test/Gitlab/Tests/Api/ProjectsTest.php
@@ -493,12 +493,12 @@ public function shouldGetPipelinesWithSHA()
493
array('id' => 3, 'status' => 'pending', 'ref' => 'test-pipeline')
494
);
495
496
- $api = $this->getApiMock();
497
- $api->expects($this->once())
498
- ->method('get')
499
- ->with('projects/1/pipelines', ['sha' => '123'])
500
- ->will($this->returnValue($expectedArray))
501
- ;
+ $api = $this->getApiMock();
+ $api->expects($this->once())
+ ->method('get')
+ ->with('projects/1/pipelines', ['sha' => '123'])
+ ->will($this->returnValue($expectedArray))
+ ;
502
503
$this->assertEquals($expectedArray, $api->pipelines(1, ['sha' => '123']));
504
}
0 commit comments