Преглед изворни кода

EAGLESIX-3082: Fixed the test case for SEE_NEXT.

Scott Munday пре 11 година
родитељ
комит
661459138c
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      test/lib/pipeline/documentSources/SkipDocumentSource.js

+ 1 - 1
test/lib/pipeline/documentSources/SkipDocumentSource.js

@@ -197,7 +197,7 @@ module.exports = {
 			'should return 1 (GET_NEXT)': function () {
 				var sds = new SkipDocumentSource();
 
-				assert.strictEqual(sds.getDependencies(), 1); // Hackish. We may be getting an enum in somewhere.
+				assert.strictEqual(sds.getDependencies(), DocumentSource.GetDepsReturn.SEE_NEXT); // Hackish. We may be getting an enum in somewhere.
 			}
 		},