Skip to content

Commit

Permalink
test: fix type error in of-type.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Grzesie2k committed Jan 2, 2024
1 parent 83ef9ba commit 7173e5a
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 7173e5a

Please sign in to comment.