diff options
-rw-r--r-- | tests/hazmat/primitives/test_ec.py | 4 |
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 ) ) |