We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c682ae3 commit 59d32f0Copy full SHA for 59d32f0
test/node/object_id_tests.js
@@ -85,7 +85,7 @@ describe('ObjectId', function() {
85
* @ignore
86
*/
87
it('should isValid check input Buffer length', function(done) {
88
- var buffTooShort = new Buffer ([]);
+ var buffTooShort = new Buffer([]);
89
var buffTooLong = new Buffer([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]);
90
var buff12Bytes = new Buffer([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]);
91
0 commit comments