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 25fea08 commit 3c7f6f6Copy full SHA for 3c7f6f6
test/Gitlab/Tests/Api/MergeRequestsTest.php
@@ -311,7 +311,7 @@ public function shouldResolveDiscussion()
311
312
$api = $this->getApiMock();
313
$api->expects($this->once())
314
- ->method('post')
+ ->method('put')
315
->with('projects/1/merge_requests/2/discussions/abc', array('resolved' => true))
316
->will($this->returnValue($expectedArray))
317
;
@@ -328,7 +328,7 @@ public function shouldUnresolveDiscussion()
328
329
330
331
332
->with('projects/1/merge_requests/2/discussions/abc', array('resolved' => false))
333
334
0 commit comments