X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F752sqlite.t;h=1a511f25d404593d4ea6da958f08d86c4bcbc966;hb=560978e22520434c67eebb2de72f0e571e47ee40;hp=b5d11cab76b1f8d015b8a6f15a9df5d9631faf3d;hpb=08615cfbc61aeab6275774832560a6ba3b1edeaf;p=dbsrgits%2FDBIx-Class.git diff --git a/t/752sqlite.t b/t/752sqlite.t index b5d11ca..1a511f2 100644 --- a/t/752sqlite.t +++ b/t/752sqlite.t @@ -96,7 +96,7 @@ DDL ); ok ($schema->storage->connected, 'Still connected'); { - local $TODO = 'SQLite is retarded wrt detecting COMMIT' if $c_commit; + local $TODO = 'SQLite is retarded wrt detecting COMMIT' if $c_commit and ! $c_begin; ok ($schema->storage->_dbh->{AutoCommit}, "DBD aware txn ended with comments on $prefix_comment"); } @@ -121,7 +121,7 @@ my $schema = DBICTest->init_schema(); # make sure the side-effects of RT#67581 do not result in data loss my $row; warnings_exist { $row = $schema->resultset('Artist')->create ({ name => 'alpha rank', rank => 'abc' }) } - [qr/Non-numeric value supplied for column 'rank' despite the numeric datatype/], + [qr/Non-integer value supplied for column 'rank' despite the integer datatype/], 'proper warning on string insertion into an numeric column' ; $row->discard_changes;