Skip to content

Commit

Permalink
Merge pull request #1461 from jeffycyang/2.2
Browse files Browse the repository at this point in the history
Fix typo in test comments
  • Loading branch information
christkv authored Jan 11, 2017
2 parents 1a3c7f5 + 6a28429 commit e411de7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/functional/operation_example_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -3897,7 +3897,7 @@ exports.shouldCorrectlyDropTheDatabase = {
db.dropDatabase(function(err, result) {
test.equal(null, err);

// Wait to seconds to let it replicate across
// Wait two seconds to let it replicate across
setTimeout(function() {
// Get the admin database
db.admin().listDatabases(function(err, dbs) {
Expand Down
2 changes: 1 addition & 1 deletion test/functional/operation_generators_example_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -3290,7 +3290,7 @@ exports.shouldCorrectlyDropTheDatabaseWithGenerators = {
// Let's drop the database
yield db.dropDatabase();

// Wait to seconds to let it replicate across
// Wait two seconds to let it replicate across
setTimeout(function() {
co(function*() {
// Get the admin database
Expand Down
2 changes: 1 addition & 1 deletion test/functional/operation_promises_example_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -3271,7 +3271,7 @@ exports.shouldCorrectlyDropTheDatabaseWithPromises = {
// Let's drop the database
db.dropDatabase().then(function(result) {

// Wait to seconds to let it replicate across
// Wait two seconds to let it replicate across
setTimeout(function() {
// Get the admin database
db.admin().listDatabases().then(function(dbs) {
Expand Down

0 comments on commit e411de7

Please sign in to comment.