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:
authorwurstsalat <mailtrash@posteo.de>2023-02-15 23:01:19 +0300
committerwurstsalat <mailtrash@posteo.de>2023-02-15 23:01:19 +0300
commit9d7c788ae357ad84728345af3977bb9f4ed3be69 (patch)
tree39d2e6e614f17cdf05a097a00da3a07ea93bfef3 /test
parentb5a3c285d8f9ce50c4daf4b4a57d65b98cb776d4 (diff)
cq: Text styling: Add type hint
Diffstat (limited to 'test')
-rw-r--r--test/common/test_styling.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/common/test_styling.py b/test/common/test_styling.py
index b1c05d00d..bf7424df2 100644
--- a/test/common/test_styling.py
+++ b/test/common/test_styling.py
@@ -523,6 +523,7 @@ class Test(unittest.TestCase):
def test_styling(self):
for _name, params in STYLING.items():
+ assert isinstance(params['input'], str)
result = styling.process(params['input'])
self.assertEqual(result.blocks, params['tokens'])