Skip to content

Commit 6a28429

Browse files
committed
Fix typo in test comments
1 parent ae67052 commit 6a28429

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/functional/operation_example_tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3897,7 +3897,7 @@ exports.shouldCorrectlyDropTheDatabase = {
38973897
db.dropDatabase(function(err, result) {
38983898
test.equal(null, err);
38993899

3900-
// Wait to seconds to let it replicate across
3900+
// Wait two seconds to let it replicate across
39013901
setTimeout(function() {
39023902
// Get the admin database
39033903
db.admin().listDatabases(function(err, dbs) {

test/functional/operation_generators_example_tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3290,7 +3290,7 @@ exports.shouldCorrectlyDropTheDatabaseWithGenerators = {
32903290
// Let's drop the database
32913291
yield db.dropDatabase();
32923292

3293-
// Wait to seconds to let it replicate across
3293+
// Wait two seconds to let it replicate across
32943294
setTimeout(function() {
32953295
co(function*() {
32963296
// Get the admin database

test/functional/operation_promises_example_tests.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3271,7 +3271,7 @@ exports.shouldCorrectlyDropTheDatabaseWithPromises = {
32713271
// Let's drop the database
32723272
db.dropDatabase().then(function(result) {
32733273

3274-
// Wait to seconds to let it replicate across
3274+
// Wait two seconds to let it replicate across
32753275
setTimeout(function() {
32763276
// Get the admin database
32773277
db.admin().listDatabases().then(function(dbs) {

0 commit comments

Comments
 (0)