diff options
author | Omer Katz <omer.drow@gmail.com> | 2020-08-04 17:27:37 +0300 |
---|---|---|
committer | Omer Katz <omer.drow@gmail.com> | 2020-08-04 17:37:29 +0300 |
commit | 85578afc4fea28adc16afdd3d7418b240357d96e (patch) | |
tree | 81f7b78cc160aadba8eec61babc5a79b2f42a612 /t/unit/utils/test_encoding.py | |
parent | a130c4636796623aa038848202b02c1a549c1312 (diff) | |
download | kombu-remove-python2-support.tar.gz |
autopep8.remove-python2-support
Diffstat (limited to 't/unit/utils/test_encoding.py')
-rw-r--r-- | t/unit/utils/test_encoding.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/unit/utils/test_encoding.py b/t/unit/utils/test_encoding.py index 51fc5786..3eedbb24 100644 --- a/t/unit/utils/test_encoding.py +++ b/t/unit/utils/test_encoding.py @@ -45,6 +45,7 @@ class test_default_encoding: class newbytes(bytes): """Mock class to simulate python-future newbytes class""" + def __repr__(self): return 'b' + super().__repr__() |