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:
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'])