Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
break cs
Browse files Browse the repository at this point in the history
simPod committed Nov 12, 2024

Verified

This commit was signed with the committer’s verified signature.
simPod Simon Podlipsky
1 parent 1e12e02 commit 31818bd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/Utils/CoerceInputValueTest.php
Original file line number Diff line number Diff line change
@@ -216,8 +216,11 @@ public function isClientSafe(): bool
*/
public function testReturnsNoErrorForAValidInput($input): void
{
$result = Value::coerceInputValue($input, $this->testInputObject);
$this->expectGraphQLValue($result, ['foo' => 123]);

$result = Value::coerceInputValue(
$input, $this->testInputObject,
);
$this->expectGraphQLValue($result, [ 'foo' => 123]);
}

/** @return iterable<array{mixed}> */

0 comments on commit 31818bd

Please sign in to comment.