Skip to content

Commit ac9ea01

Browse files
committed
test: quick connection string fix
1 parent 5dfb62f commit ac9ea01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/connection.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1542,7 +1542,7 @@ describe('connections:', function() {
15421542
it('should not throw an error when attempting to mutate unmutable options object gh-13335', async function() {
15431543
const m = new mongoose.Mongoose();
15441544
const opts = Object.preventExtensions({});
1545-
const conn = await m.connect('mongodb://localhost:27017/db?retryWrites=true&w=majority&readPreference=secondaryPreferred', opts);
1545+
const conn = await m.connect('mongodb://127.0.0.1:27017/db?retryWrites=true&w=majority&readPreference=secondaryPreferred', opts);
15461546
assert.ok(conn);
15471547
});
15481548
});

0 commit comments

Comments
 (0)