diff options
author | Inada Naoki <songofacandy@gmail.com> | 2022-03-03 12:29:55 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 12:29:55 +0900 |
commit | cb50b2081b21e5cb4a364d292f55092c98aa1a6f (patch) | |
tree | ce97035a3f9c129ab52e665b21a7124cf55d5500 /test/test_sequnpack.py | |
parent | 89ea57747ebcb0fad004a92ab00ebf13c10b2d51 (diff) | |
download | msgpack-python-cb50b2081b21e5cb4a364d292f55092c98aa1a6f.tar.gz |
Update setuptools and black (#498)
* Use setuptools
* Use black==22.1.0
Diffstat (limited to 'test/test_sequnpack.py')
-rw-r--r-- | test/test_sequnpack.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_sequnpack.py b/test/test_sequnpack.py index 6293a45..9f20c07 100644 --- a/test/test_sequnpack.py +++ b/test/test_sequnpack.py @@ -118,8 +118,8 @@ def test_issue124(): def test_unpack_tell(): stream = io.BytesIO() - messages = [2 ** i - 1 for i in range(65)] - messages += [-(2 ** i) for i in range(1, 64)] + messages = [2**i - 1 for i in range(65)] + messages += [-(2**i) for i in range(1, 64)] messages += [ b"hello", b"hello" * 1000, |