Skip to content

Commit 2cba96f

Browse files
committed
ACQE-8696: [Web API Automation] - AC-8972
- Code review point fixed - fix indentation for query..
1 parent 0bbec75 commit 2cba96f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

dev/tests/api-functional/testsuite/Magento/GraphQl/Catalog/ProductVisibilitySearchTest.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ class ProductVisibilitySearchTest extends GraphQlAbstract
2727
public function testProductNotReturnedWhenVisibilityIsCatalogOnly(): void
2828
{
2929
$query = <<<'QUERY'
30-
query {
31-
products(
32-
search: "API"
33-
filter: { price: { from: "1" } }
34-
) {
35-
items {
36-
name
37-
sku
38-
}
39-
}
40-
}
41-
QUERY;
30+
query {
31+
products(
32+
search: "API"
33+
filter: { price: { from: "1" } }
34+
) {
35+
items {
36+
name
37+
sku
38+
}
39+
}
40+
}
41+
QUERY;
4242

4343
$response = $this->graphQlQuery($query);
4444
$this->assertArrayNotHasKey('errors', $response);

0 commit comments

Comments
 (0)