aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_verify.py
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2020-11-25 17:59:23 +0100
committerMartin Czygan <martin.czygan@gmail.com>2020-11-25 17:59:23 +0100
commit7370865afed676b18dc73945ee902d5d4fef81e5 (patch)
tree809ab6b342d626c9ecfbe30072f3ad7f6a0c3b0a /tests/test_verify.py
parent5ef1d5934da489da1c8a30a3a498d3f9bdf262cc (diff)
downloadfuzzycat-7370865afed676b18dc73945ee902d5d4fef81e5.tar.gz
fuzzycat-7370865afed676b18dc73945ee902d5d4fef81e5.zip
fix test, be case insensitive for now
Diffstat (limited to 'tests/test_verify.py')
-rw-r--r--tests/test_verify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_verify.py b/tests/test_verify.py
index 90a22b5..4ae1172 100644
--- a/tests/test_verify.py
+++ b/tests/test_verify.py
@@ -47,5 +47,5 @@ def test_compare():
assert status == status, "status: want {}, got {} for {} {}".format(
expected_status, status, a, b)
if expected_reason:
- assert reason == reason, "reason: want {}, got {}".format(expected_reason, reason)
+ assert expected_reason.lower() == reason.lower(), "reason [{} {}]: want {}, got {}".format(a, b, expected_reason, reason)
logger.info("ran verification over {} cases (https://git.io/JkDgS)".format(i))