Fix codestyle

This commit is contained in:
spawnia 2019-03-29 09:27:33 +01:00
parent ddebd9a414
commit db915d8812

View File

@ -1107,7 +1107,8 @@ class ExecutorTest extends TestCase
'a' => ['type' => Type::int()], 'a' => ['type' => Type::int()],
'b' => ['type' => Type::string()], 'b' => ['type' => Type::string()],
], ],
]), 'defaultValue' => ['a' => 1, 'b' => 'test'], ]),
'defaultValue' => ['a' => 1, 'b' => 'test'],
], ],
'i' => [ 'i' => [
'type' => new EnumType([ 'type' => new EnumType([
@ -1115,10 +1116,10 @@ class ExecutorTest extends TestCase
'values' => [ 'values' => [
'VALUE1' => 1, 'VALUE1' => 1,
'VALUE2' => 2, 'VALUE2' => 2,
] ],
]), ]),
'defaultValue' => 1 'defaultValue' => 1,
] ],
], ],
], ],
], ],