forked from goodboy/tractor
1
0
Fork 0

Not sure exactly, but we're getting a top level multierr now?

msgspec_not_fucked
Tyler Goodlet 2021-06-30 13:50:32 -04:00
parent b1de90b175
commit 1e49066b16
1 changed files with 9 additions and 2 deletions

View File

@ -123,8 +123,15 @@ def test_multierror_fast_nursery(arb_addr, start_method, num_subactors, delay):
assert exc_info.type == tractor.MultiError
err = exc_info.value
assert len(err.exceptions) == num_subactors
for exc in err.exceptions:
exceptions = err.exceptions
if len(exceptions) == 2:
# sometimes oddly now there's an embedded BrokenResourceError ?
exceptions = exceptions[1].exceptions
assert len(exceptions) == num_subactors
for exc in exceptions:
assert isinstance(exc, tractor.RemoteActorError)
assert exc.type == AssertionError