Skip to content

Commit 1f1589d

Browse files
committed
Fixing typo.
1 parent 6145b59 commit 1f1589d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

tests/unit/bucket.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const ViewQuery = require('../../lib/couchbase').ViewQuery;
1212
test(require('bluebird'), 'bluebird');
1313
test(Promise, 'native');
1414
test(require('kew'), 'kew');
15-
test(require('Q'), 'Q');
15+
test(require('q'), 'Q');
1616
test(require('rsvp'), 'Rsvp');
1717

1818
function test(library, libraryName) {

tests/unit/bucketmgr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const BucketManager = require('../../lib/bucketmgr.js');
88
test(require('bluebird'), 'bluebird');
99
test(Promise, 'native');
1010
test(require('kew'), 'kew');
11-
test(require('Q'), 'Q');
11+
test(require('q'), 'Q');
1212
test(require('rsvp'), 'Rsvp');
1313

1414
function test(library, libraryName) {

tests/unit/clustermgr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const couchbase = require('../../lib/couchbase');
88
test(require('bluebird'), 'bluebird');
99
test(Promise, 'native');
1010
test(require('kew'), 'kew');
11-
test(require('Q'), 'Q');
11+
test(require('q'), 'Q');
1212
test(require('rsvp'), 'Rsvp');
1313

1414
function test(library, libraryName) {

tests/unit/lookup-in.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const MockLookupInBuilder = require('../../lib/mock-partials').LookupInBuilder;
99
test(require('bluebird'), 'bluebird');
1010
test(Promise, 'native');
1111
test(require('kew'), 'kew');
12-
test(require('Q'), 'Q');
12+
test(require('q'), 'Q');
1313
test(require('rsvp'), 'Rsvp');
1414

1515
function test(library, libraryName) {

tests/unit/mock-cluster.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const CouchbaseError = couchbase.Error;
1111
test(require('bluebird'), 'bluebird');
1212
test(Promise, 'native');
1313
test(require('kew'), 'kew');
14-
test(require('Q'), 'Q');
14+
test(require('q'), 'Q');
1515
test(require('rsvp'), 'Rsvp');
1616

1717
function test(library, libraryName) {

tests/unit/mutate-in.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const MockMutateInBuilder = require('../../lib/mock-partials').MutateInBuilder;
99
test(require('bluebird'), 'bluebird');
1010
test(Promise, 'native');
1111
test(require('kew'), 'kew');
12-
test(require('Q'), 'Q');
12+
test(require('q'), 'Q');
1313
test(require('rsvp'), 'Rsvp');
1414

1515
function test(library, libraryName) {

0 commit comments

Comments
 (0)