Skip to content

Commit 8171735

Browse files
committed
What is actual if not what was expected?
1 parent cf9ef84 commit 8171735

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_importlib/test_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class FilesTests:
1111
def test_read_bytes(self):
1212
files = resources.files(self.data)
1313
actual = files.joinpath('utf-8.file').read_bytes()
14-
assert actual == b'Hello, UTF-8 world!\n'
14+
assert actual == b'Hello, UTF-8 world!\n', repr(actual)
1515

1616
def test_read_text(self):
1717
files = resources.files(self.data)

0 commit comments

Comments
 (0)