From db915d881212e8eb8c24934e8e1db728214c96a2 Mon Sep 17 00:00:00 2001 From: spawnia Date: Fri, 29 Mar 2019 09:27:33 +0100 Subject: [PATCH] Fix codestyle --- tests/Executor/ExecutorTest.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/Executor/ExecutorTest.php b/tests/Executor/ExecutorTest.php index d3679e8..9f5480f 100644 --- a/tests/Executor/ExecutorTest.php +++ b/tests/Executor/ExecutorTest.php @@ -1101,13 +1101,14 @@ class ExecutorTest extends TestCase 'f' => ['type' => Type::int(), 'defaultValue' => 'some-string'], 'g' => ['type' => Type::boolean()], 'h' => [ - 'type' => new InputObjectType([ + 'type' => new InputObjectType([ 'name' => 'ComplexType', 'fields' => [ 'a' => ['type' => Type::int()], 'b' => ['type' => Type::string()], ], - ]), 'defaultValue' => ['a' => 1, 'b' => 'test'], + ]), + 'defaultValue' => ['a' => 1, 'b' => 'test'], ], 'i' => [ 'type' => new EnumType([ @@ -1115,10 +1116,10 @@ class ExecutorTest extends TestCase 'values' => [ 'VALUE1' => 1, 'VALUE2' => 2, - ] + ], ]), - 'defaultValue' => 1 - ] + 'defaultValue' => 1, + ], ], ], ],