mirror of
https://github.com/aljazceru/python-teos.git
synced 2026-02-01 12:44:25 +01:00
Remove wrong parenthesis
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user