Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-08-30 12:17:02 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-08-30 12:17:02 +0300
commit0312de72e1bdbd8e888b6f80fd9b854f5466eb4a (patch)
treea913320977b7ce5733452f64570d61901dc289c4 /test
parent8c63db1aca290457bb7a63b286f4b863d2964dfd (diff)
cq: Fix ruff PERF102 errors
Diffstat (limited to 'test')
-rw-r--r--test/common/test_styling.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/common/test_styling.py b/test/common/test_styling.py
index bf7424df2..63d4f2600 100644
--- a/test/common/test_styling.py
+++ b/test/common/test_styling.py
@@ -522,7 +522,7 @@ class Test(unittest.TestCase):
return f'Prologue (link: {link}), and epilogue!'
def test_styling(self):
- for _name, params in STYLING.items():
+ for params in STYLING.values():
assert isinstance(params['input'], str)
result = styling.process(params['input'])
self.assertEqual(result.blocks, params['tokens'])