From 04b12990e5e41739f35b58971e21890d201c5503 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Fri, 27 Jan 2023 16:51:54 -0500 Subject: Revert "RF test to use "12345" and "to" instead of misspelling components" This reverts commit 5efa354ce9fff1217d22e52493d1442866821a7b. --- tests/test_proxy.py | 4 ++-- 1 file 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), -- cgit v1.2.1