@@ -17,7 +17,7 @@ describe('Pool tests', function() {
1717 Connection . enableConnectionAccounting ( ) ;
1818
1919 // Attempt to connect
20- var pool = new Pool ( {
20+ var pool = new Pool ( null , {
2121 host : this . configuration . host ,
2222 port : this . configuration . port ,
2323 bson : new Bson ( ) ,
@@ -45,7 +45,7 @@ describe('Pool tests', function() {
4545 Connection . enableConnectionAccounting ( ) ;
4646
4747 // Attempt to connect
48- var pool = new Pool ( {
48+ var pool = new Pool ( null , {
4949 host : this . configuration . host ,
5050 port : this . configuration . port ,
5151 bson : new Bson ( )
@@ -85,7 +85,7 @@ describe('Pool tests', function() {
8585 var index = 0 ;
8686
8787 // Attempt to connect
88- var pool = new Pool ( {
88+ var pool = new Pool ( null , {
8989 host : this . configuration . host ,
9090 port : this . configuration . port ,
9191 bson : new Bson ( )
@@ -205,7 +205,7 @@ describe('Pool tests', function() {
205205 this . timeout ( 0 ) ;
206206
207207 // Attempt to connect
208- var pool = new Pool ( {
208+ var pool = new Pool ( null , {
209209 host : this . configuration . host ,
210210 port : this . configuration . port ,
211211 socketTimeout : 3000 ,
@@ -242,7 +242,7 @@ describe('Pool tests', function() {
242242 Connection . enableConnectionAccounting ( ) ;
243243
244244 // Attempt to connect
245- var pool = new Pool ( {
245+ var pool = new Pool ( null , {
246246 host : this . configuration . host ,
247247 port : this . configuration . port ,
248248 socketTimeout : 3000 ,
@@ -300,7 +300,7 @@ describe('Pool tests', function() {
300300 Connection . enableConnectionAccounting ( ) ;
301301
302302 // Attempt to connect
303- var pool = new Pool ( {
303+ var pool = new Pool ( null , {
304304 host : this . configuration . host ,
305305 port : this . configuration . port ,
306306 socketTimeout : 3000 ,
@@ -382,7 +382,7 @@ describe('Pool tests', function() {
382382 Connection . enableConnectionAccounting ( ) ;
383383
384384 // Attempt to connect
385- var pool = new Pool ( {
385+ var pool = new Pool ( null , {
386386 host : this . configuration . host ,
387387 port : this . configuration . port ,
388388 socketTimeout : 3000 ,
@@ -459,7 +459,7 @@ describe('Pool tests', function() {
459459 Connection . enableConnectionAccounting ( ) ;
460460
461461 // Attempt to connect
462- var pool = new Pool ( {
462+ var pool = new Pool ( null , {
463463 host : this . configuration . host ,
464464 port : this . configuration . port ,
465465 socketTimeout : 1000 ,
@@ -526,7 +526,7 @@ describe('Pool tests', function() {
526526 expect ( createUserRes ) . to . exist ;
527527 expect ( createUserErr ) . to . be . null ;
528528 // Attempt to connect
529- var pool = new Pool ( {
529+ var pool = new Pool ( null , {
530530 host : self . configuration . host ,
531531 port : self . configuration . port ,
532532 bson : new Bson ( )
@@ -606,7 +606,7 @@ describe('Pool tests', function() {
606606 expect ( createAdminUserErr ) . to . be . null ;
607607
608608 // Attempt to connect
609- var pool = new Pool ( {
609+ var pool = new Pool ( null , {
610610 host : self . configuration . host ,
611611 port : self . configuration . port ,
612612 bson : new Bson ( )
@@ -812,7 +812,7 @@ describe('Pool tests', function() {
812812 expect ( createAdminUserErr ) . to . be . null ;
813813
814814 // Attempt to connect
815- var pool = new Pool ( {
815+ var pool = new Pool ( null , {
816816 host : self . configuration . host ,
817817 port : self . configuration . port ,
818818 bson : new Bson ( )
@@ -936,7 +936,7 @@ describe('Pool tests', function() {
936936 expect ( createAdminUserRes ) . to . exist ;
937937 expect ( createAdminUserErr ) . to . be . null ;
938938 // Attempt to connect
939- var pool = new Pool ( {
939+ var pool = new Pool ( null , {
940940 host : self . configuration . host ,
941941 port : self . configuration . port ,
942942 bson : new Bson ( )
@@ -1030,7 +1030,7 @@ describe('Pool tests', function() {
10301030 expect ( createAdminUserRes ) . to . exist ;
10311031
10321032 // Attempt to connect
1033- var pool = new Pool ( {
1033+ var pool = new Pool ( null , {
10341034 host : self . configuration . host ,
10351035 port : self . configuration . port ,
10361036 bson : new Bson ( )
@@ -1098,7 +1098,7 @@ describe('Pool tests', function() {
10981098 Connection . enableConnectionAccounting ( ) ;
10991099
11001100 // Attempt to connect
1101- var pool = new Pool ( {
1101+ var pool = new Pool ( null , {
11021102 host : this . configuration . host ,
11031103 port : this . configuration . port ,
11041104 bson : new Bson ( ) ,
0 commit comments