Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Nov 8, 2024
1 parent 9aa1111 commit 070b07e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Provider/ColumnFactoryProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static function defaultValueRaw(): array
$defaultValueRaw = parent::defaultValueRaw();

$defaultValueRaw[] = [ColumnType::STRING, 'NULL ', null];
$defaultValueRaw[] = [ColumnType::STRING, "'str'ing' ", "str'ing"];
$defaultValueRaw[] = [ColumnType::STRING, "'str''ing' ", "str'ing"];
$defaultValueRaw[] = [ColumnType::INTEGER, '-1 ', -1];
$defaultValueRaw[] = [ColumnType::TIMESTAMP, 'now() ', new Expression('now()')];

Expand Down

0 comments on commit 070b07e

Please sign in to comment.