Skip to content

Commit 8b817e1

Browse files
authored
try removing sqlite3.SQLITE_OPEN_MEMORY
1 parent 2020778 commit 8b817e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/open_close.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe('open/close', function() {
3838

3939
var db;
4040
it('should open the database', function(done) {
41-
db = new sqlite3.Database('test/tmp/test_create_shared.db',sqlite3.OPEN_SHAREDCACHE|sqlite3.SQLITE_OPEN_MEMORY, done);
41+
db = new sqlite3.Database('test/tmp/test_create_shared.db',sqlite3.OPEN_SHAREDCACHE, done);
4242
});
4343

4444
it('should close the database', function(done) {

0 commit comments

Comments
 (0)