diff options
Diffstat (limited to 'tests/test_proxy.py')
-rw-r--r-- | tests/test_proxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_proxy.py b/tests/test_proxy.py index 9d707a4a..2e0b0e51 100644 --- a/tests/test_proxy.py +++ b/tests/test_proxy.py @@ -141,4 +141,4 @@ class TestProxyCommand(object): # module-time ImportErrors. So we mock the symptoms. Meh! with raises(ImportError) as info: ProxyCommand("hi!!!") - assert info.value.msg == "meh" + assert str(info.value) == "meh" |