Skip to content

Commit ad6f5bf

Browse files
committed
style(*): fix linting issues in two places
1 parent 335d6a4 commit ad6f5bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/parser/deserializer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function deserialize(buffer, options, isArray) {
4545

4646
if (size + index > buffer.length) {
4747
throw new Error(
48-
`(bson size ${size} + options.index ${index} must be <= buffer length ${Buffer.byteLength(
48+
`(bson size ${size} + options.index ${index} must be <= buffer length ${Buffer.byteLength(
4949
buffer
5050
)})`
5151
);

test/node/bson_compliance_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ describe('BSON Compliance', function() {
8989
}
9090

9191
return object;
92-
};
92+
}
9393

9494
// Iterate over all the results
9595
scenarios.documents.forEach(function(doc) {

0 commit comments

Comments
 (0)