Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
arunvickram authored and FCO committed Feb 25, 2024
1 parent f579bd5 commit 06976f4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions t/12-roles.rakutest
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ model Ble does Bla {}

$*RED-DB.when: :once, :return[], qq:to/EOSQL/;
CREATE TABLE "ble" (
a varchar(255) NOT NULL
a text NOT NULL
)
EOSQL

Expand All @@ -24,8 +24,8 @@ model Bli does Bla { has Str $.b is column }

$*RED-DB.when: :once, :return[], qq:to/EOSQL/;
CREATE TABLE "bli" (
a varchar(255) NOT NULL,
b varchar(255) NOT NULL
a text NOT NULL,
b text NOT NULL
)
EOSQL

Expand Down Expand Up @@ -96,7 +96,7 @@ model Foo does Bar[:opt-in] does Baz {
$*RED-DB.when: :once, :return[], q:to/EOSQL/;
create table "foo"(
id integer not null primary key autoincrement,
a varchar ( 255 ) not null,
a text not null,
b integer not null,
c real not null
)
Expand Down

0 comments on commit 06976f4

Please sign in to comment.