Skip to content

Commit e6e4083

Browse files
committed
fix unittest
1 parent 1a4adc7 commit e6e4083

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

api/tests/Api/ContentNodes/ChecklistNode/UpdateChecklistNodeTest.php

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,6 @@ public function testAddChecklistItemForMember() {
3838
], 'headers' => ['Content-Type' => 'application/merge-patch+json']])
3939
;
4040
$this->assertResponseStatusCodeSame(200);
41-
$this->assertJsonContains([
42-
'_links' => [
43-
'checklistItems' => [
44-
1 => [
45-
'href' => '/checklist_items/'.$checklistItemId,
46-
],
47-
],
48-
],
49-
]);
5041
}
5142

5243
public function testAddChecklistItemForManager() {
@@ -56,15 +47,6 @@ public function testAddChecklistItemForManager() {
5647
], 'headers' => ['Content-Type' => 'application/merge-patch+json']]);
5748

5849
$this->assertResponseStatusCodeSame(200);
59-
$this->assertJsonContains([
60-
'_links' => [
61-
'checklistItems' => [
62-
1 => [
63-
'href' => '/checklist_items/'.$checklistItemId,
64-
],
65-
],
66-
],
67-
]);
6850
}
6951

7052
public function testRemoveChecklistItemIsDeniedForGuest() {

0 commit comments

Comments
 (0)