diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-01-27 18:00:34 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-01-27 18:17:07 -0500 |
commit | 54c6eacda3fd1e47f7cb7a0bf320e03352266b81 (patch) | |
tree | e9041a4c2a9e21fe6b3700567eb11c92d7c2c75a /tests | |
parent | 65e392214697567b340a14c9f6dfb63011f9a35a (diff) |
Just change a faux-misspelt surname in an example text snippet
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_sftp.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py index cecbb305..be123de4 100644 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py @@ -46,7 +46,7 @@ ARTICLE = """ Insulin sensitivity and liver insulin receptor structure in ducks from two genera -T. Constans, B. Chevalier, M. Derouet and J. Simon +T. Constantine, B. Chevalier, M. Derouet and J. Simon Station de Recherches Avicoles, Institut National de la Recherche Agronomique, Nouzilly, France. @@ -129,7 +129,7 @@ class TestSFTP: try: with sftp.open(sftp.FOLDER + "/duck.txt", "w") as f: f.write(ARTICLE) - assert sftp.stat(sftp.FOLDER + "/duck.txt").st_size == 1483 + assert sftp.stat(sftp.FOLDER + "/duck.txt").st_size == 1486 finally: sftp.remove(sftp.FOLDER + "/duck.txt") @@ -140,7 +140,7 @@ class TestSFTP: try: with sftp.open(sftp.FOLDER + "/duck.txt", "w") as f: f.write(ARTICLE) - assert sftp.stat(sftp.FOLDER + "/duck.txt").st_size == 1483 + assert sftp.stat(sftp.FOLDER + "/duck.txt").st_size == 1486 finally: sftp.remove(sftp.FOLDER + "/duck.txt") |