summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-01-27 17:21:05 -0500
committerJeff Forcier <jeff@bitprophet.org>2023-01-27 17:21:05 -0500
commit5963fddab452cafed336252194ced49f5b5b580b (patch)
tree02aad0927269c795f2ae7928186e46dd2c4dd200
parent19e5db81ec13ef3aeeb8c12f94d096376d8d8f4c (diff)
downloadparamiko-5963fddab452cafed336252194ced49f5b5b580b.tar.gz
Tweak silly test constant to be a real word
-rw-r--r--tests/test_proxy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_proxy.py b/tests/test_proxy.py
index 85b6e67a..3d767729 100644
--- a/tests/test_proxy.py
+++ b/tests/test_proxy.py
@@ -122,7 +122,7 @@ class TestProxyCommand:
select.return_value = [stdout], None, None
# Base case: None timeout means no timing out
os_read.return_value = b"meh"
- proxy = ProxyCommand("yellow")
+ proxy = ProxyCommand("hello")
assert proxy.timeout is None
# Implicit 'no raise' check
assert proxy.recv(3) == b"meh"