Skip to content

Commit

Permalink
test(forkJoin): update test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh authored Mar 28, 2019
1 parent eaa3bb2 commit 1f6ea4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/observables/forkJoin-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ describe('forkJoin', () => {
expectObservable(e2).toBe(expected2, {x: { foo: null, bar: 'b', baz: '3', qux: undefined } });
});

it('should accept array of observable contains single', () => {
it('should accept a hashmap of a single observable', () => {
const e1 = forkJoin({
foo: hot('--a--b--c--d--|')
});
Expand Down Expand Up @@ -351,7 +351,7 @@ describe('forkJoin', () => {
});
});

it('should accept array of observables', () => {
it('should accept a hashmap of observables', () => {
const e1 = forkJoin({
foo: hot('--a--b--c--d--|'),
bar: hot('(b|)'),
Expand Down

0 comments on commit 1f6ea4e

Please sign in to comment.