Skip to content

Commit

Permalink
Fix reduce tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrattli committed Jan 18, 2024
1 parent f0422c9 commit dd43379
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_reduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async def test_reduce():
values = list(map(lambda t: t[1], observer.values))
assert values == [
OnNext(10),
OnCompleted,
OnCompleted(),
]


Expand All @@ -55,5 +55,5 @@ async def test_reduce_async():
values = list(map(lambda t: t[1], observer.values))
assert values == [
OnNext(10),
OnCompleted,
OnCompleted(),
]

0 comments on commit dd43379

Please sign in to comment.