Browse Source

EAGLESIX-812 Add semicolon

Chris Sexton 11 years ago
parent
commit
9d78c86803
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test/lib/pipeline/documentSources/ProjectDocumentSource.js

+ 2 - 2
test/lib/pipeline/documentSources/ProjectDocumentSource.js

@@ -69,13 +69,13 @@ module.exports = {
 		"should return errors in the callback": function Errors() {
 			var input = [{_id: 0, a: "foo"}];
 			var cds = new CursorDocumentSource(null, new ArrayRunner(input), null);
-			var pds = ProjectDocumentSource.createFromJson({x:{"$add":["$a", "$a"]}})
+			var pds = ProjectDocumentSource.createFromJson({x:{"$add":["$a", "$a"]}});
 			pds.setSource(cds);
 			pds.getNext(function(err, actual) {
 				assert(err, "Expected error");
 			});
 		},
-		
+
 		"should return EOF": function testEOF(next) {
 			var pds = createProject({});
 			pds.setSource({