aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-12-24 13:44:45 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-12-24 13:44:45 -0800
commit2a36dd1b9f68f34f2545e519f8eac00b8b40c59d (patch)
treee00a0410cb245eeee651fa2b7b163fe35e8f860c
parentc4088fbe900c336a86bd82409f566d3be75e51bd (diff)
downloadcryptography-2a36dd1b9f68f34f2545e519f8eac00b8b40c59d.tar.gz
cryptography-2a36dd1b9f68f34f2545e519f8eac00b8b40c59d.tar.bz2
cryptography-2a36dd1b9f68f34f2545e519f8eac00b8b40c59d.zip
Cover a missed branch
-rw-r--r--tests/hazmat/primitives/utils.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/utils.py b/tests/hazmat/primitives/utils.py
index b00d3184..e0184777 100644
--- a/tests/hazmat/primitives/utils.py
+++ b/tests/hazmat/primitives/utils.py
@@ -22,8 +22,7 @@ def _load_all_params(path, file_names, param_loader):
def generate_encrypt_test(param_loader, path, file_names, cipher_factory,
- mode_factory, only_if=lambda backend: True,
- skip_message=None):
+ mode_factory, only_if, skip_message=None):
all_params = _load_all_params(path, file_names, param_loader)
@pytest.mark.parametrize("params", all_params)