Skip to content

Commit

Permalink
test(take): fix typo in test title
Browse files Browse the repository at this point in the history
  • Loading branch information
staltz committed Dec 21, 2016
1 parent a9854cc commit c7f7db7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/operator/take.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('Stream.prototype.take', () => {
stream.addListener(listener);
});

it('should return a Stream if input stream is a tream', (done: any) => {
it('should return a Stream if input stream is a Stream', (done: any) => {
const input = xs.of(1, 2, 3);
assert.strictEqual(input instanceof Stream, true);
const stream: Stream<number> = input.take(2);
Expand Down

0 comments on commit c7f7db7

Please sign in to comment.