Skip to content

Commit

Permalink
FIX Change type to Int
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Oct 10, 2024
1 parent f0fe0d3 commit 84b65f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/BasicFieldsTestPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class BasicFieldsTestPage extends TestPage
'TimeHTML5' => 'Time',
'ToggleCompositeTextField1' => 'Varchar',
'ToggleCompositeDropdownField' => 'Varchar',
'Validated' => 'Text',
'Validated' => 'Int',
);

private static $has_one = array(
Expand Down Expand Up @@ -187,7 +187,7 @@ public function getDefaultData()
'Time' => "23:59",
'TimeHTML5' => "23:59",
'ToggleCompositeTextField1' => 'My value (ä!)',
'Validated' => '1',
'Validated' => 1,
);
}

Expand Down

0 comments on commit 84b65f2

Please sign in to comment.