Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions t/URT/t/04a_sqlite.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
use strict;
use warnings;
use Test::More tests => 80;
use Test::Deep;

use File::Basename;
use lib File::Basename::dirname(__FILE__)."/../../../lib";
Expand Down Expand Up @@ -37,7 +38,7 @@ sub test_column_details {

my @expected = ( { TABLE_NAME => 'inline',
COLUMN_NAME => 'id',
DATA_TYPE => 'integer',
DATA_TYPE => re(qr/^integer$/i),
COLUMN_SIZE => undef,
NULLABLE => 1,
COLUMN_DEF => undef,
Expand All @@ -50,7 +51,7 @@ sub test_column_details {
COLUMN_DEF => 'some name',
},
);
is_deeply(\@results,
cmp_deeply(\@results,
\@expected,
'column details for table inline are correct');
}
Expand Down