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 e835ebc commit 7ada9baCopy full SHA for 7ada9ba
dev/tests/api-functional/testsuite/Magento/GraphQl/Sales/CustomerOrders/CustomerOrdersTest.php
@@ -99,20 +99,20 @@ public function testOrdersQuery()
99
100
/**
101
*/
102
- public function testOrdersQueryNotAuthorized()
+ public function testCustomerOrdersQueryNotAuthorized()
103
{
104
$this->expectException(\Exception::class);
105
$this->expectExceptionMessage('The current customer isn\'t authorized.');
106
107
$query = <<<QUERY
108
-{
109
- customerOrders {
110
- items {
111
- increment_id
112
- grand_total
113
- }
114
115
-}
+ {
+ customerOrders {
+ items {
+ increment_id
+ grand_total
+ }
116
QUERY;
117
$this->graphQlQuery($query);
118
}
0 commit comments