Skip to content

Commit 6f62bea

Browse files
committed
#28579:DependencyTest does not analyze GraphQL schema files - fixed static code style test
1 parent ce1464e commit 6f62bea

File tree

1 file changed

+15
-21
lines changed

1 file changed

+15
-21
lines changed

dev/tests/integration/testsuite/Magento/Framework/GraphQl/Config/GraphQlReaderTest.php

Lines changed: 15 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -221,31 +221,25 @@ function ($a, $b) {
221221
}
222222
//Checks to make sure that the given description exists in the expectedOutput array
223223
$this->assertArrayHasKey(
224-
225-
array_search(
226-
'Comment for empty PhysicalProductInterface',
227-
array_column($expectedOutput, 'description')
228-
),
229-
$expectedOutput
230-
224+
array_search(
225+
'Comment for empty PhysicalProductInterface',
226+
array_column($expectedOutput, 'description')
227+
),
228+
$expectedOutput
231229
);
232230
$this->assertArrayHasKey(
233-
234-
array_search(
235-
'Comment for empty Enum',
236-
array_column($expectedOutput, 'description')
237-
),
238-
$expectedOutput
239-
231+
array_search(
232+
'Comment for empty Enum',
233+
array_column($expectedOutput, 'description')
234+
),
235+
$expectedOutput
240236
);
241237
$this->assertArrayHasKey(
242-
243-
array_search(
244-
'Comment for SearchResultPageInfo',
245-
array_column($expectedOutput, 'description')
246-
),
247-
$expectedOutput
248-
238+
array_search(
239+
'Comment for SearchResultPageInfo',
240+
array_column($expectedOutput, 'description')
241+
),
242+
$expectedOutput
249243
);
250244
}
251245
}

0 commit comments

Comments
 (0)