Skip to content

Commit

Permalink
chore(specs): fix spec naming for AsyncIterable.from
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpodwysocki committed Nov 13, 2017
1 parent 446993e commit 6aefd45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/asynciterable/from-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ test('AsyncIterable#fromObservable with completion', async t => {
t.end();
});

test('AsyncIterable#fromObservable without completion', async t => {
test('AsyncIterable#fromObservable with multiple', async t => {
const xs = new TestObservable<number>(obs => {
let count = 0;
const interval = setInterval(() => {
Expand All @@ -229,7 +229,7 @@ test('AsyncIterable#fromObservable without completion', async t => {
t.end();
});

test('AsyncIterable#fromObservable without completion', async t => {
test('AsyncIterable#fromObservable multiple with selector', async t => {
const xs = new TestObservable<number>(obs => {
let count = 0;
const interval = setInterval(() => {
Expand Down

0 comments on commit 6aefd45

Please sign in to comment.