fix skip count for SQLite without fk support people/haarg/sqlite-improvements
Graham Knop [Thu, 26 Jan 2012 00:45:20 +0000 (19:45 -0500)]
t/752sqlite.t

index fd538ba..dacfb6f 100644 (file)
@@ -101,8 +101,7 @@ $schema->storage->dbh_do(sub {
   SKIP: {
     my ($fk_enabled) = $dbh->selectrow_array('PRAGMA foreign_keys');
     if (! defined $fk_enabled) {
-      # skip
-      skip 'SQLite not compiled with foreign key enforcement', 2;
+      skip 'SQLite not compiled with foreign key enforcement', 4;
       return;
     }
     $schema->storage->connect_call_use_foreign_keys;