aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2023-03-24 13:53:55 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2023-03-24 13:53:55 +0300
commit266d2c7b8b975ccc6361eb47bcab7e73b578a1f6 (patch)
treef2e765d51bcaa34a5d1d4e7ce93f1e0805a324d1 /tests/compression
parentstart work on 0.10.6 (diff)
downloadsnakeoil-266d2c7b8b975ccc6361eb47bcab7e73b578a1f6.tar.gz
snakeoil-266d2c7b8b975ccc6361eb47bcab7e73b578a1f6.tar.bz2
snakeoil-266d2c7b8b975ccc6361eb47bcab7e73b578a1f6.zip
Reformat with black 23.1.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'tests/compression')
-rw-r--r--tests/compression/__init__.py1
-rw-r--r--tests/compression/test_bzip2.py1
-rw-r--r--tests/compression/test_xz.py1
3 files changed, 0 insertions, 3 deletions
diff --git a/tests/compression/__init__.py b/tests/compression/__init__.py
index 0bf26d0..61ab9cc 100644
--- a/tests/compression/__init__.py
+++ b/tests/compression/__init__.py
@@ -15,7 +15,6 @@ def hide_binary(*binaries: str):
class Base:
-
module: str = ""
decompressed_test_data: bytes = b""
compressed_test_data: bytes = b""
diff --git a/tests/compression/test_bzip2.py b/tests/compression/test_bzip2.py
index 9fdffd9..8af917a 100644
--- a/tests/compression/test_bzip2.py
+++ b/tests/compression/test_bzip2.py
@@ -28,7 +28,6 @@ def test_missing_lbzip2_binary():
class Bzip2Base(Base):
-
module = "bzip2"
decompressed_test_data = b"Some text here\n"
compressed_test_data = (
diff --git a/tests/compression/test_xz.py b/tests/compression/test_xz.py
index 0af7c64..a666bbe 100644
--- a/tests/compression/test_xz.py
+++ b/tests/compression/test_xz.py
@@ -22,7 +22,6 @@ def test_missing_xz_binary():
class XzBase(Base):
-
module = "xz"
decompressed_test_data = b"Some text here\n" * 2
compressed_test_data = (