Skip to content

Commit

Permalink
chore: fix test for snapshot order
Browse files Browse the repository at this point in the history
  • Loading branch information
noahnu committed Aug 23, 2024
1 parent 7c1b24f commit b867d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_pycharm_patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def test_case(snapshot):
except:
from teamcity.diff_tools import EqualsAssertionError
err = EqualsAssertionError(expected=snapshot, actual=[1,2,3])
err = EqualsAssertionError(expected=[1,2,3], actual=snapshot)
print("Expected:", repr(err.expected))
print("Actual:", repr(err.actual))
raise
Expand Down

0 comments on commit b867d38

Please sign in to comment.