From 9c1b3501f7d1252c6583a729d46a24b5c882c65d Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sun, 20 Jan 2019 08:23:49 +0900 Subject: [PATCH] fix the number of tests to skip (fix #44) --- t/65_db_config.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/65_db_config.t b/t/65_db_config.t index ff4f93c..198cde6 100644 --- a/t/65_db_config.t +++ b/t/65_db_config.t @@ -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)';