diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-03 11:21:07 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-01-03 11:21:07 -0800 |
commit | f96db83a64bb0ac40d04d27383d7c2defbcec491 (patch) | |
tree | a208e29ad945c061d41a71ce4d0f8a825d43739d /tests/test_utils.py | |
parent | 3dbc46a41e201df431cad02f8ed80565e7a9defb (diff) | |
parent | f03334e25c3c31094015d1421feef7bcec9a9c1f (diff) | |
download | cryptography-f96db83a64bb0ac40d04d27383d7c2defbcec491.tar.gz cryptography-f96db83a64bb0ac40d04d27383d7c2defbcec491.tar.bz2 cryptography-f96db83a64bb0ac40d04d27383d7c2defbcec491.zip |
Merge pull request #398 from reaperhulk/backend-skip-backend-name
Show which backend caused a skip
Diffstat (limited to 'tests/test_utils.py')
-rw-r--r-- | tests/test_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py index c640367e..e3e53d63 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -50,7 +50,7 @@ def test_check_backend_support_skip(): funcargs={"backend": True}) with pytest.raises(pytest.skip.Exception) as exc_info: check_backend_support(item) - assert exc_info.value.args[0] == "Nope" + assert exc_info.value.args[0] == "Nope (True)" def test_check_backend_support_no_skip(): |