File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
dev/tests/api-functional/testsuite/Magento/GraphQl/Quote Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -68,9 +68,9 @@ public function testGetOwnCartForRegisteredCustomer()
68
68
69
69
$ response = $ this ->sendRequestWithToken ($ query );
70
70
71
- self ::assertArrayHasKey ('Cart ' , $ response );
72
- self ::assertNotEmpty ($ response ['Cart ' ]['items ' ]);
73
- self ::assertNotEmpty ($ response ['Cart ' ]['shipping_addresses ' ]);
71
+ self ::assertArrayHasKey ('cart ' , $ response );
72
+ self ::assertNotEmpty ($ response ['cart ' ]['items ' ]);
73
+ self ::assertNotEmpty ($ response ['cart ' ]['shipping_addresses ' ]);
74
74
}
75
75
76
76
/**
@@ -110,7 +110,7 @@ public function testGetCartForGuest()
110
110
111
111
$ response = $ this ->graphQlQuery ($ query );
112
112
113
- self ::assertArrayHasKey ('Cart ' , $ response );
113
+ self ::assertArrayHasKey ('cart ' , $ response );
114
114
}
115
115
116
116
public function testGetNonExistentCart ()
@@ -134,7 +134,7 @@ private function prepareGetCartQuery(
134
134
) : string {
135
135
return <<<QUERY
136
136
{
137
- Cart (cart_id: " $ maskedQuoteId") {
137
+ cart (cart_id: " $ maskedQuoteId") {
138
138
applied_coupon {
139
139
code
140
140
}
You can’t perform that action at this time.
0 commit comments