aboutsummaryrefslogtreecommitdiff
path: root/tests/errors/errors.test.py
diff options
context:
space:
mode:
authornatsuoto <[email protected]>2026-07-10 16:27:09 +0530
committernatsuoto <[email protected]>2026-07-10 16:27:09 +0530
commit329116d9ad0c64db3800ed17ea0530ad68f95d4b (patch)
treeae13a1029da843c44093471866deeb008e67d7a4 /tests/errors/errors.test.py
parent0d029b2fe8426270b232e81778d2d9eff768ae13 (diff)
downloadedify-329116d9ad0c64db3800ed17ea0530ad68f95d4b.tar.xz
edify-329116d9ad0c64db3800ed17ea0530ad68f95d4b.zip
chore: apply ruff lint and format fixes
Diffstat (limited to 'tests/errors/errors.test.py')
-rw-r--r--tests/errors/errors.test.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/errors/errors.test.py b/tests/errors/errors.test.py
index 5b48165..74acaa4 100644
--- a/tests/errors/errors.test.py
+++ b/tests/errors/errors.test.py
@@ -129,8 +129,10 @@ def test_must_have_a_smaller_value_reports_the_codepoints():
error = MustHaveASmallerValueError("z", "a")
text = str(error)
assert "range bounds are inverted" in text
- assert "'z'" in text and "'a'" in text
- assert "= 122" in text and "= 97" in text
+ assert "'z'" in text
+ assert "'a'" in text
+ assert "= 122" in text
+ assert "= 97" in text
def test_must_be_less_than():