node: Fix typeof error (#15987)

This commit is contained in:
Andy
2017-04-19 10:09:20 -07:00
committed by GitHub
parent 00e7404aa1
commit 525be6811d

View File

@@ -446,7 +446,7 @@ function stream_readable_pipe_test() {
assert(typeof r.bytesRead === 'number');
assert(typeof r.path === 'string');
assert(typeof rs.path === 'Buffer');
assert(rs.path instanceof Buffer);
r.pipe(z).pipe(w);