diff --git a/tests/Utils/CoerceInputValueTest.php b/tests/Utils/CoerceInputValueTest.php index 082ce59ef..cc8f6eeba 100644 --- a/tests/Utils/CoerceInputValueTest.php +++ b/tests/Utils/CoerceInputValueTest.php @@ -216,7 +216,10 @@ public function isClientSafe(): bool */ public function testReturnsNoErrorForAValidInput($input): void { - $result = Value::coerceInputValue($input, $this->testInputObject); + $result = Value::coerceInputValue( + $input, + $this->testInputObject, + ); $this->expectGraphQLValue($result, ['foo' => 123]); }