Skip to content

Commit 1a9ab5a

Browse files
committed
COH-32958 - Fix Jenkins test failure on main from test_unary_error() test
1 parent ae5e68c commit 1a9ab5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,4 +661,4 @@ async def test_unary_error(test_session: Session) -> None:
661661
with pytest.raises(Exception) as ex:
662662
await cache.put("a", d)
663663

664-
assert "Could not deserialize" in str(ex.value)
664+
assert ("Could not deserialize" in str(ex.value)) or ("Failed to deserialize" in str(ex.value))

0 commit comments

Comments
 (0)