Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
observingClouds committed Oct 31, 2024
1 parent 55d9f7c commit 9480e8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_distributed.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ def test_run_distributed(args):
pytest.raises(
ZeroDivisionError,
call_wrapper,
args=(args,),
args=args,
)
else:
pytest.raises(
ModuleNotFoundError,
call_wrapper,
args=(args,),
args=args,
)
else:
pytest.raises(
ModuleNotFoundError,
call_wrapper,
args=(args,),
args=args,
)

0 comments on commit 9480e8d

Please sign in to comment.