Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Oct 7, 2024
1 parent b7a76f4 commit dae8c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/new_tests/test_mrt_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class TestMRT:
# Only need to test codepath once for uint32_t conversion helper function
(
{"reads_capacity": 2**32, "writes_capacity": 256},
pytest.raises((ValueError | OverflowError)),
pytest.raises((ValueError, OverflowError)),
"reads_capacity is too large for an unsigned 32-bit integer"
)
]
Expand Down

0 comments on commit dae8c4c

Please sign in to comment.