Skip to content

Commit c51dda0

Browse files
committed
fix tests typo
1 parent b9550d3 commit c51dda0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/Type/ResolveInfoTest.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,12 +236,12 @@ public function testMergedFragmentsFieldSelection()
236236
}
237237
238238
fragment Replies01 on article {
239-
_replies01: replies {
239+
_replies012: replies {
240240
body
241241
}
242242
}
243243
fragment Replies02 on article {
244-
_replies02: replies {
244+
_replies012: replies {
245245
author {
246246
id
247247
name
@@ -279,7 +279,7 @@ public function testMergedFragmentsFieldSelection()
279279
'height' => true,
280280
'url' => true
281281
],
282-
'replies' => [
282+
'_replies02' => [
283283
'body' => true, //this would be missing if not for the fix https://github.com/webonyx/graphql-php/pull/98
284284
'author' => [
285285
'id' => true,
@@ -325,4 +325,6 @@ public function testMergedFragmentsFieldSelection()
325325
$this->assertEquals($expectedDefaultSelection, $actualDefaultSelection);
326326
$this->assertEquals($expectedDeepSelection, $actualDeepSelection);
327327
}
328+
329+
328330
}

0 commit comments

Comments
 (0)