diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-24 21:03:43 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-12-24 21:03:43 -0800 |
commit | 6198da1fcce93d7efb89995d0a10d9170ee8f230 (patch) | |
tree | a3b4cc115a075f5e5d8ac56316aabb1f3abf4f83 | |
parent | 5a09c6e9545373cece95f87ed28579f05959fced (diff) | |
download | cryptography-6198da1fcce93d7efb89995d0a10d9170ee8f230.tar.gz cryptography-6198da1fcce93d7efb89995d0a10d9170ee8f230.tar.bz2 cryptography-6198da1fcce93d7efb89995d0a10d9170ee8f230.zip |
Update test
-rw-r--r-- | tests/test_skip_check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_skip_check.py b/tests/test_skip_check.py index 3b303aca..73a6e563 100644 --- a/tests/test_skip_check.py +++ b/tests/test_skip_check.py @@ -28,4 +28,4 @@ def test_skip_check(): item = pretend.stub(keywords=["fake_name"], funcargs={"backend": True}) with pytest.raises(pytest.skip.Exception) as exc_info: skip_check("fake_name", FakeInterface, item) - assert exc_info.value.args[0] == "Backend does not support fake_name" + assert exc_info.value.args[0] == "True backend does not support fake_name" |