minor adjustment to integrity test

This commit is contained in:
Stephen Lombardo 2020-11-11 09:41:55 -05:00
parent 5bdc671b0a
commit c8e644d9db
1 changed files with 3 additions and 2 deletions

View File

@ -179,11 +179,12 @@ do_test integrity-check-clean-database {
sqlite_orig db test.db
execsql {
PRAGMA key = 'testkey';
PRAGMA integrity_check;
PRAGMA cipher_integrity_check;
PRAGMA integrity_check;
SELECT count(*) FROM t1;
}
} {ok {} {}}
} {ok ok 10000}
db close
file delete -force test.db