summaryrefslogtreecommitdiff
path: root/tests/test_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_utils.py')
-rw-r--r--tests/test_utils.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py
index 804e58be..5030ce0e 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -537,11 +537,13 @@ def test_str_to_bool_true():
assert cu.str_to_bool('true')
assert cu.str_to_bool('True')
assert cu.str_to_bool('TRUE')
+ assert cu.str_to_bool('tRuE')
def test_str_to_bool_false():
assert not cu.str_to_bool('false')
assert not cu.str_to_bool('False')
assert not cu.str_to_bool('FALSE')
+ assert not cu.str_to_bool('fAlSe')
def test_str_to_bool_invalid():
with pytest.raises(ValueError):