Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use more unique yet short paths for logging #2642

Merged
merged 3 commits into from
Nov 30, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Make tests pass on Python 3.5
  • Loading branch information
purplesyringa committed Oct 13, 2020
commit dd08b89c813a1d0f7e3b42c319f93397416aadb0
2 changes: 1 addition & 1 deletion src/Test/TestDebug.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def testFormatException(self):
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):
Expand Down