We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d27d366 commit e1c59c3Copy full SHA for e1c59c3
1 file changed
test/common.py
@@ -3,8 +3,8 @@
3
import warnings
4
5
def assert_equal(expected, result):
6
- print("Expected:\n%s\n" % expected)
7
- print("Got:\n%s\n" % result)
+ print("Expected:\n%r\n" % expected)
+ print("Got:\n%r\n" % result)
8
assert expected == result
9
10
0 commit comments