diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-11-27 01:11:38 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-11-27 01:11:38 +0100 |
commit | dd9e6f523fb843c0ca0438e452fbcee238142fbf (patch) | |
tree | 7b501ab2b58770d1510041f1d9a0e44a547c6527 /tests | |
parent | 6053f08b3c5ff55cd61cfee1603b88917b3b3164 (diff) | |
download | fuzzycat-dd9e6f523fb843c0ca0438e452fbcee238142fbf.tar.gz fuzzycat-dd9e6f523fb843c0ca0438e452fbcee238142fbf.zip |
fix slash
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_verify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_verify.py b/tests/test_verify.py index 7875d06..4789311 100644 --- a/tests/test_verify.py +++ b/tests/test_verify.py @@ -42,7 +42,7 @@ def test_compare(): status, reason = compare(load_release_ident(a), load_release_ident(b)) if not expected_status or expected_status.lower() == "todo": logger.warning( - "skipping test {base}/release/{a} {base}/release/{b} -- no result defined (we think {status}, {reason})" + "skipping test {base}release/{a} {base}release/{b} -- no result defined (we think {status}, {reason})" .format(a=a, b=b, base=FATCAT_BASE_URL, status=status, reason=reason)) continue assert status_mapping[expected_status] == status, "status: want {}, got {} for {} {}".format( |