From 50d892b197c1a67206696c08277f5df085d82d26 Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Mon, 14 Oct 2019 17:40:49 +0100 Subject: [PATCH] Remove wrong parenthesis --- test/unit/test_blob.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/test_blob.py b/test/unit/test_blob.py index 7eb3418..de9403f 100644 --- a/test/unit/test_blob.py +++ b/test/unit/test_blob.py @@ -59,7 +59,7 @@ def test_init_blob(): try: Blob(data, cipher, hash_function) - assert(False, "Able to create blob with wrong data") + assert False, "Able to create blob with wrong data" except ValueError: assert True @@ -78,7 +78,7 @@ def test_encrypt(): try: blob.encrypt(invalid_key) - assert (False, "Able to create encrypt with invalid key") + assert False, "Able to create encrypt with invalid key" except ValueError: assert True