File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ public function assertValid(Type $parentType)
100
100
Utils::invariant (
101
101
empty ($ this ->config ['resolve ' ]),
102
102
sprintf (
103
- '%s.%s field type has a resolve property, but Input Types cannot define resolvers. ' ,
103
+ '%s.%s field has a resolve property, but Input Types cannot define resolvers. ' ,
104
104
$ parentType ->name ,
105
105
$ this ->name
106
106
)
Original file line number Diff line number Diff line change @@ -1494,7 +1494,7 @@ public function testRejectsAnInputObjectTypeWithResolvers() : void
1494
1494
]);
1495
1495
$ this ->expectException (InvariantViolation::class);
1496
1496
$ this ->expectExceptionMessage (
1497
- 'SomeInputObject.f field type has a resolve property, ' .
1497
+ 'SomeInputObject.f field has a resolve property, ' .
1498
1498
'but Input Types cannot define resolvers. '
1499
1499
);
1500
1500
$ inputObjType ->assertValid ();
@@ -1518,7 +1518,7 @@ public function testRejectsAnInputObjectTypeWithResolverConstant() : void
1518
1518
]);
1519
1519
$ this ->expectException (InvariantViolation::class);
1520
1520
$ this ->expectExceptionMessage (
1521
- 'SomeInputObject.f field type has a resolve property, ' .
1521
+ 'SomeInputObject.f field has a resolve property, ' .
1522
1522
'but Input Types cannot define resolvers. '
1523
1523
);
1524
1524
$ inputObjType ->assertValid ();
You can’t perform that action at this time.
0 commit comments