Ver Fonte

Style change.

Eugene Lazutkin há 7 anos atrás
pai
commit
6557aae3e6
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      tests/test_transducers.js

+ 1 - 1
tests/test_transducers.js

@@ -37,7 +37,7 @@ unit.add(module, [
   function test_transducersNothing(t) {
   function test_transducersNothing(t) {
     const async = t.startAsync('test_transducersNothing');
     const async = t.startAsync('test_transducersNothing');
 
 
-    const chain = new Chain([[x => x * x, () => Chain.final(), x => 2 * x + 1]]),
+    const chain = new Chain([[x => x * x, () => Chain.none, x => 2 * x + 1]]),
       output = [];
       output = [];
 
 
     streamFromArray([1, 2, 3]).pipe(chain);
     streamFromArray([1, 2, 3]).pipe(chain);