Skip to content

Commit 65f7c3d

Browse files
committed
Fix test error in Python 3.10
1 parent a15bf02 commit 65f7c3d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/expressions/test_interpreter_coverage7.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,4 @@ def method(self):
668668
assert "super(): __class__ cell not found" in interpreter.get_name_value(
669669
"error1"
670670
)
671-
assert (
672-
"super() argument 1 must be a type, not NoneType"
673-
in interpreter.get_name_value("error2")
674-
)
671+
assert "super() argument 1 must be" in interpreter.get_name_value("error2")

0 commit comments

Comments
 (0)