diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2019-06-14 20:45:09 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2019-06-14 20:45:09 -0400 |
commit | 04505d5ead61d0aea866c36a89d3fbfb786b3206 (patch) | |
tree | 4d32a528daefe8f3583ad6ca046d1e48db3ded5f /tests/test_client.py | |
parent | 02175b034d91ef5fc4e86ab7379cdc2aacd7f3c4 (diff) |
Implement #322 - new ChannelFile subclass for stdin that calls shutdown_write on close()
Diffstat (limited to 'tests/test_client.py')
-rw-r--r-- | tests/test_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_client.py b/tests/test_client.py index 26de2d37..c46c383b 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -213,7 +213,7 @@ class ClientTest(unittest.TestCase): # Nobody else tests the API of exec_command so let's do it here for # now. :weary: - assert isinstance(stdin, paramiko.ChannelFile) + assert isinstance(stdin, paramiko.ChannelStdinFile) assert isinstance(stdout, paramiko.ChannelFile) assert isinstance(stderr, paramiko.ChannelStderrFile) |