فهرست منبع

Style change.

Eugene Lazutkin 7 سال پیش
والد
کامیت
6557aae3e6
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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);