diff --git a/tests/Feature/GraphQL/Fieldtypes/CodeFieldtypeTest.php b/tests/Feature/GraphQL/Fieldtypes/CodeFieldtypeTest.php index 74a49a7de9..138b80d5e5 100644 --- a/tests/Feature/GraphQL/Fieldtypes/CodeFieldtypeTest.php +++ b/tests/Feature/GraphQL/Fieldtypes/CodeFieldtypeTest.php @@ -11,11 +11,11 @@ public function it_gets_code() $this->createEntryWithFields([ 'filled' => [ 'value' => 'bar', - 'field' => ['type' => 'code'], + 'field' => ['type' => 'code', 'mode_selectable' => false], ], 'undefined' => [ 'value' => null, - 'field' => ['type' => 'code'], + 'field' => ['type' => 'code', 'mode_selectable' => false], ], 'selectable_string' => [ 'value' => 'bar',