Skip to content

Commit 1c16210

Browse files
drew-grossTylerBrock
authored andcommitted
Fix database URI (#1911)
* Fix database URI * Use database name that is less likely to collide with people's actual databases
1 parent 7d2929a commit 1c16210

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/helper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var path = require('path');
1111
var TestUtils = require('../src/index').TestUtils;
1212
var MongoStorageAdapter = require('../src/Adapters/Storage/Mongo/MongoStorageAdapter');
1313

14-
var databaseURI = process.env.DATABASE_URI;
14+
var databaseURI = 'mongodb://localhost:27017/parseServerMongoAdapterTestDatabase';
1515
var port = 8378;
1616

1717
// Default server configuration for tests.

0 commit comments

Comments
 (0)