diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-01-27 17:21:05 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-01-27 17:21:05 -0500 |
commit | 5963fddab452cafed336252194ced49f5b5b580b (patch) | |
tree | 02aad0927269c795f2ae7928186e46dd2c4dd200 /tests/test_proxy.py | |
parent | 19e5db81ec13ef3aeeb8c12f94d096376d8d8f4c (diff) |
Tweak silly test constant to be a real word
Diffstat (limited to 'tests/test_proxy.py')
-rw-r--r-- | tests/test_proxy.py | 2 |
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" |