1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 06:08:38 -04:00

fix the number of tests to skip (fix #44)

This commit is contained in:
Kenichi Ishigaki 2019-01-20 08:23:49 +09:00
parent 4dd0bf8167
commit 9c1b3501f7

View file

@ -204,7 +204,7 @@ for my $func (@CALL_FUNCS) {
# DEFENSIVE at connection
SKIP: {
skip 'DEFENSIVE is not supported', 8 if !SQLITE_DBCONFIG_DEFENSIVE;
skip 'DEFENSIVE is not supported', 3 if !SQLITE_DBCONFIG_DEFENSIVE;
my $dbh = connect_ok(RaiseError => 1, PrintError => 0, sqlite_defensive => 1);
my $sql = 'CREATE TABLE foo (id, text)';