diff options
Diffstat (limited to 'tests/path.py')
-rwxr-xr-x | tests/path.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/path.py b/tests/path.py index ef1f35004..0d6892776 100755 --- a/tests/path.py +++ b/tests/path.py @@ -145,7 +145,7 @@ class path(text_type): mode = 'rU' if PY2 else 'r' with open(self, mode=mode, encoding=encoding, **kwargs) as f: text = f.read() - contents = repr_as(text, '<%s contents>' % self.basename()) + contents = repr_as(text, '<%s contents: %r>' % (self.basename(), text)) return contents def bytes(self): |