Skip to content

Commit

Permalink
Merge pull request #1582 from Grzesie2k/of-type-spec
Browse files Browse the repository at this point in the history
test: fix type error in of-type.spec.ts
  • Loading branch information
kamilmysliwiec committed Jan 2, 2024
2 parents 83ef9ba + 7173e5a commit 8a7284a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operators/of-type.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('operators/ofType', () => {
expectedResults.push(new A());

stream.next(new B());
stream.next(...expectedResults);
expectedResults.forEach((event) => stream.next(event));
stream.next(new Date());

expect(output).toEqual(expectedResults);
Expand Down

0 comments on commit 8a7284a

Please sign in to comment.