diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-01-27 16:51:54 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-01-27 16:51:54 -0500 |
commit | 04b12990e5e41739f35b58971e21890d201c5503 (patch) | |
tree | 104a71a60c6773ab4efb1cf2731d3088addb0f20 /tests | |
parent | 78010e6f4bca752501f8e2e563fae5e080a9c119 (diff) |
Revert "RF test to use "12345" and "to" instead of misspelling components"
This reverts commit 5efa354ce9fff1217d22e52493d1442866821a7b.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_proxy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_proxy.py b/tests/test_proxy.py index 16bdb67c..85b6e67a 100644 --- a/tests/test_proxy.py +++ b/tests/test_proxy.py @@ -44,10 +44,10 @@ class TestProxyCommand: select.return_value = [stdout], None, None fileno = stdout.fileno.return_value # Intentionally returning <5 at a time sometimes - os_read.side_effect = [b"123", b"45", b"of to", b"me"] + os_read.side_effect = [b"was", b"te", b"of ti", b"me"] proxy = ProxyCommand("hi") data = proxy.recv(5) - assert data == b"12345" + assert data == b"waste" assert [x[0] for x in os_read.call_args_list] == [ (fileno, 5), (fileno, 2), |