aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2018-07-18 18:12:15 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2018-07-18 05:12:15 -0500
commitdfb332da50ee9358ef9f46b2e8ffb28f1cfd8751 (patch)
treedf214632710fd8df83a36af2740a3cfdcddc1d42
parent4de004955b2d9d0d714fe29ae95b8eff7ee983a1 (diff)
downloadcryptography-dfb332da50ee9358ef9f46b2e8ffb28f1cfd8751.tar.gz
cryptography-dfb332da50ee9358ef9f46b2e8ffb28f1cfd8751.tar.bz2
cryptography-dfb332da50ee9358ef9f46b2e8ffb28f1cfd8751.zip
improve skip msg when skipping an ECDH test in test_ec (#4355)
-rw-r--r--tests/hazmat/primitives/test_ec.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_ec.py b/tests/hazmat/primitives/test_ec.py
index d015e84d..4e61b5d4 100644
--- a/tests/hazmat/primitives/test_ec.py
+++ b/tests/hazmat/primitives/test_ec.py
@@ -65,8 +65,8 @@ def _skip_exchange_algorithm_unsupported(backend, algorithm, curve):
algorithm, curve
):
pytest.skip(
- "Exchange algorithm is not supported by this backend {0}".format(
- backend
+ "Exchange with {0} curve is not supported by {1}".format(
+ curve.name, backend
)
)