From e9015b4484a6594a02f38590e089ab44c9291d23 Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Mon, 21 Jan 2019 16:05:46 +0100 Subject: [PATCH] Add else condition because I was confused --- test/check_testvectors.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/check_testvectors.py b/test/check_testvectors.py index 1eb7b61a..976052c5 100644 --- a/test/check_testvectors.py +++ b/test/check_testvectors.py @@ -34,5 +34,7 @@ for impl in implementations: if testvectorsHash.lower() != expectedTestvectorsHash.lower(): print(f"testvectors of {SCHEME} should be {expectedTestvectorsHash}, but is {testvectorsHash}") sys.exit(1) + else: + print(f"testvectors of {SCHEME} matched expected hash")