aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2023-12-15 10:41:45 +0100
committerGuido Günther <agx@sigxcpu.org>2023-12-15 10:51:50 +0100
commit8deb2e1d5b0d1b245a9b376cbfc5801ee654154b (patch)
tree8530b8281bd63814b1af386d085a2e350071a61b
parentd1a974589d2ae58a8704be9e6401305be639fa1d (diff)
tests: Make flake8 happy
Closes: #1058551
-rw-r--r--tests/02_test_upstream_source_tar_unpack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/02_test_upstream_source_tar_unpack.py b/tests/02_test_upstream_source_tar_unpack.py
index 7ce02867..bab6b74e 100644
--- a/tests/02_test_upstream_source_tar_unpack.py
+++ b/tests/02_test_upstream_source_tar_unpack.py
@@ -55,7 +55,7 @@ class TestUnpack(unittest.TestCase):
source.unpack(".")
assert source.is_orig() is True
assert source.is_dir() is False
- assert type(source.unpacked) == str
+ assert type(source.unpacked) is str
def test_upstream_source_unpack(self):
for (comp, archive) in self.archives.items():