improve skip msg when skipping an ECDH test in test_ec (#4355)

This commit is contained in:
Paul Kehrer 2018-07-18 18:12:15 +08:00 committed by Alex Gaynor
parent 4de004955b
commit dfb332da50

View file

@ -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
)
)