Skip to content

Commit

Permalink
test(series): fix test names of series method
Browse files Browse the repository at this point in the history
  • Loading branch information
blond committed Jun 10, 2016
1 parent 2c14cfc commit a2df549
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/series.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test('should support empty iterator', t => {
t.deepEqual(iter.next(), done());
});

test('should return the equal iterator', t => {
test('should return equal iterator', t => {
const values = (new Set([1, 2])).values();

const iter = series(values);
Expand Down Expand Up @@ -54,7 +54,7 @@ test('should concat iterators with empty iterator', t => {
t.deepEqual(Array.from(iter), [1, 2, 3, 4]);
});

test('should concat the equal iterators', t => {
test('should concat equal iterators', t => {
const set = new Set([1, 2]);

const iter = series(set.values(), set.values());
Expand Down

0 comments on commit a2df549

Please sign in to comment.