summaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-01-24 09:16:21 -0800
committerJeff Forcier <jeff@bitprophet.org>2017-01-24 09:16:21 -0800
commit76d0cf1b985e7ce776c0f716d5c3a4baecab1531 (patch)
tree5eee671191bdd73e69c6849371765f89bf2d613c /tests
parentfd62d87c6f04c5266e73ad50a97d4689f7f1892c (diff)
parent3ed75f66a19eea3d8812423c1617d1d362e96d6d (diff)
Merge branch '1.17' into 1.18
Diffstat (limited to 'tests')
-rw-r--r--tests/stub_sftp.py2
-rw-r--r--tests/test_client.py2
-rwxr-xr-xtests/test_sftp.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/stub_sftp.py b/tests/stub_sftp.py
index 24380ba1..5fcca386 100644
--- a/tests/stub_sftp.py
+++ b/tests/stub_sftp.py
@@ -55,7 +55,7 @@ class StubSFTPHandle (SFTPHandle):
class StubSFTPServer (SFTPServerInterface):
# assume current folder is a fine root
- # (the tests always create and eventualy delete a subfolder, so there shouldn't be any mess)
+ # (the tests always create and eventually delete a subfolder, so there shouldn't be any mess)
ROOT = os.getcwd()
def _realpath(self, path):
diff --git a/tests/test_client.py b/tests/test_client.py
index e7ebbc6a..49bdf528 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -371,7 +371,7 @@ class SSHClientTest (unittest.TestCase):
# NOTE: re #387, re #394
# If pkey module used within Client._auth isn't correctly handling auth
# errors (e.g. if it allows things like ValueError to bubble up as per
- # midway thru #394) client.connect() will fail (at key load step)
+ # midway through #394) client.connect() will fail (at key load step)
# instead of succeeding (at password step)
kwargs = dict(
# Password-protected key whose passphrase is not 'pygmalion' (it's
diff --git a/tests/test_sftp.py b/tests/test_sftp.py
index e4c2c3a3..d3064fff 100755
--- a/tests/test_sftp.py
+++ b/tests/test_sftp.py
@@ -413,7 +413,7 @@ class SFTPTest (unittest.TestCase):
def test_A_readline_seek(self):
"""
create a text file and write a bunch of text into it. then count the lines
- in the file, and seek around to retreive particular lines. this should
+ in the file, and seek around to retrieve particular lines. this should
verify that read buffering and 'tell' work well together, and that read
buffering is reset on 'seek'.
"""