Skip to content

Commit 0ab817f

Browse files
added TypeError to test_roundtrip[test_other__service1], because different error on python 7.13.8. (#3275)
with input from @edmondchuc Co-authored-by: Edmond Chuc <37032744+edmondchuc@users.noreply.github.com>
1 parent ec04ee9 commit 0ab817f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_sparql/test_translate_algebra.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def _format_query(query: str) -> str:
260260
"Test if a nested service pattern is properly translated"
261261
"into the query text.",
262262
pytest.mark.xfail(
263-
raises=RecursionError,
263+
raises=(RecursionError, TypeError),
264264
reason="Fails with RecursionError inside parser.parseQuery",
265265
),
266266
)

0 commit comments

Comments
 (0)