summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_pxssh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_pxssh.py b/tests/test_pxssh.py
index c89aa98..ee35bdd 100644
--- a/tests/test_pxssh.py
+++ b/tests/test_pxssh.py
@@ -64,7 +64,7 @@ class PxsshTestCase(SSHTestBase):
confirmation_string = 'ssh -q -R 2525:localhost:22 -L 2424:localhost:22 -D 8888 -l me server'
string = ssh.login('server', 'me', password='s3cret', ssh_tunnels=tunnels)
if string!=confirmation_string:
- raise False, 'String generated from tunneling is potientally incorrect.'
+ assert False, 'String generated from tunneling is potientally incorrect.'
if __name__ == '__main__':