Skip to content

Commit a660689

Browse files
committed
Must've been a node version that caused the value to be utf8, it's now null in CI too
1 parent 3253390 commit a660689

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

test/atomic/Stream.test.res

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ zoraBlock("Stream.Readable", t => {
2626
let stream = StreamTestLib.makeReadableEmpty()->Stream.onError(
2727
err => {
2828
t->equal(err, dummyError, "")
29-
resolve(. ())
29+
resolve()
3030
},
3131
)
3232

@@ -86,18 +86,14 @@ zoraBlock("Stream.Writable", t => {
8686
Js.typeof(cb),
8787
))
8888
}
89-
t->equal(
90-
actual,
91-
Some(("Writable", "number", Js.Null.return(StringEncoding.utf8), "function")),
92-
"",
93-
)
89+
t->equal(actual, Some(("Writable", "number", Js.null, "function")), "")
9490

95-
resolve(. ())
91+
resolve()
9692
},
9793
(),
9894
)->ignore
9995
},
10096
)
10197
},
10298
)
103-
})
99+
})

0 commit comments

Comments
 (0)