Explorar el Código

Style change.

Eugene Lazutkin hace 7 años
padre
commit
6557aae3e6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tests/test_transducers.js

+ 1 - 1
tests/test_transducers.js

@@ -37,7 +37,7 @@ unit.add(module, [
   function test_transducersNothing(t) {
     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 = [];
 
     streamFromArray([1, 2, 3]).pipe(chain);