Skip to content

Commit

Permalink
mode_selectable defaults to true now
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmcclean committed May 21, 2024
1 parent da00fc7 commit 00669d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Feature/GraphQL/Fieldtypes/CodeFieldtypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 00669d6

Please sign in to comment.