diff --git a/mongoUtils.js b/mongoUtils.js index 74ae473673fbdb949170b7c551b76814f72be07b..c06fa4704e8e60cc77c489699b3ef7135dfd2a87 100644 --- a/mongoUtils.js +++ b/mongoUtils.js @@ -12,7 +12,7 @@ function openDatabaseConnection(callback){ MongoClient.connect(url, (err, client) => { if(err) throw err; _client = client; - _db = client.db('users'); + _db = client.db('test'); // If a callback function was provided, run it if(callback){ return callback();