Skip to content

Commit 37ea7eb

Browse files
committed
test: ffi: ts: uncomment db close
Without this the test fails. This close is unrelated to the removed ffi close and we have to keep it for the test
1 parent 45e2fc7 commit 37ea7eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crypto-ffi/bindings/js/test/wdio/database.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ describe("database", () => {
145145

146146
// It is important to close the database here since otherwise the migration process
147147
// will be stuck because we'd be holding a connection to the same database open.
148-
// db.close();
148+
db.close();
149149

150150
// Migrate the whole database to use the new key type.
151151
const old_key = clientName;

0 commit comments

Comments
 (0)