diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/t/check_dbi.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/t/check_dbi.t b/plugins/t/check_dbi.t index e542ba53..c24b5a8c 100644 --- a/plugins/t/check_dbi.t +++ b/plugins/t/check_dbi.t @@ -49,7 +49,8 @@ SKIP: { $filename =~ s/^\/tmp\///; system("$sqlite3 /tmp/$filename 'CREATE TABLE test(a INT, b TEXT)'"); - system("$sqlite3 /tmp/$filename 'INSERT INTO test VALUES (1, \"text1\"), (2, \"text2\")'"); + system("$sqlite3 /tmp/$filename 'INSERT INTO test VALUES (1, \"text1\")'"); + system("$sqlite3 /tmp/$filename 'INSERT INTO test VALUES (2, \"text2\")'"); my $check_cmd = "./check_dbi -d sqlite3 -o sqlite3_dbdir=/tmp -o dbname=$filename"; |