Skip to content

Commit 665942d

Browse files
author
Thomas Reggi
committed
fix test
1 parent 8e2f5af commit 665942d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/core/mongodb_srv.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ describe('mongodb+srv', function() {
3838
expect(result).to.exist;
3939

4040
if (test[1].options && test[1].options.replicaSet) {
41-
expect(result.options.replicaset).to.equal(test[1].options.replicaSet);
41+
expect(result.options.replicaSet).to.equal(test[1].options.replicaSet);
4242
}
4343

4444
if (test[1].options && test[1].options.ssl) {
4545
expect(result.options.ssl).to.equal(test[1].options.ssl);
4646
}
4747

4848
if (test[1].options && test[1].options.authSource) {
49-
expect(result.options.authsource).to.equal(test[1].options.authSource);
49+
expect(result.options.authSource).to.equal(test[1].options.authSource);
5050
}
5151

5252
if (

0 commit comments

Comments
 (0)