WIP prints to debug frickin windows

sort_subs_results_infected_aio
Tyler Goodlet 2022-04-12 16:13:33 -04:00
parent 597ae4b690
commit 9c27858aaf
1 changed files with 8 additions and 4 deletions

View File

@ -280,14 +280,18 @@ async def stream_from_aio(
# we get double the pulled values in the
# ``.subscribe()`` fan out case.
doubled = list(itertools.chain(*zip(expect, expect)))
if pulled != doubled[:len(pulled)]:
print(f'uhhh pulled is {pulled}')
assert pulled == doubled[:len(pulled)]
expect = doubled[:len(pulled)]
if pulled != expect:
print(
f'uhhh pulled is {pulled}\n',
f'uhhh expect is {expect}\n',
)
assert pulled == expect
else:
assert pulled == expect
else:
# if fan_out:
assert not fan_out
assert pulled == expect[:51]
print('trio guest mode task completed!')