Make tests pass on Python 3.5

This commit is contained in:
Ivanq 2020-10-13 20:36:39 +03:00
parent 6770b450b3
commit dd08b89c81
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class TestDebug:
try:
os.path.abspath(1)
except:
assert Debug.formatException().startswith("TypeError: expected str, bytes or os.PathLike object, not int in TestDebug.py line 47 > <posixpath> line ")
assert "in TestDebug.py line 47 > <posixpath> line " in Debug.formatException()
def testFormatStack(self):