Browse Source

Refs #990. Bug fix for one of the test cases in FirstAccumulator.

http://source.rd.rcg.local/trac/eagle6/changeset/1312/Eagle6_SVN
Spencer Rathbun 13 years ago
parent
commit
741433d83b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      test/lib/pipeline/accumulators/FirstAccumulator.js

+ 1 - 0
test/lib/pipeline/accumulators/FirstAccumulator.js

@@ -61,6 +61,7 @@ module.exports = {
 			"The accumulator evaluates two documents and retains the value in the first": function two() {
 				var acc = createAccumulator();
 				acc.evaluate({a:5});
+				acc.evaluate({a:7});
 				assert.strictEqual(acc.getValue(), 5);
 			},