Skip to content

Commit

Permalink
Fix typo in readable stream test description
Browse files Browse the repository at this point in the history
  • Loading branch information
calvaris authored and domenic committed Feb 18, 2015
1 parent 28f9bda commit a4ffbfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reference-implementation/test/readable-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ test('ReadableStream instances have the correct methods and properties', t => {
const rs = new ReadableStream();

t.equal(typeof rs.read, 'function', 'has a read method');
t.equal(typeof rs.cancel, 'function', 'has an cancel method');
t.equal(typeof rs.cancel, 'function', 'has a cancel method');
t.equal(typeof rs.pipeTo, 'function', 'has a pipeTo method');
t.equal(typeof rs.pipeThrough, 'function', 'has a pipeThrough method');

Expand Down

0 comments on commit a4ffbfd

Please sign in to comment.