From 3bde012ea14f86ff2ec588db997f0dd419b225fe Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Sun, 10 Jan 2021 20:18:00 -0500 Subject: [PATCH] Create a better expectation If we pass all this stuff to Popen we should expect to see it from get_argv() right? --- src/allmydata/test/test_windows.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/allmydata/test/test_windows.py b/src/allmydata/test/test_windows.py index c91a2d462..81638f6e4 100644 --- a/src/allmydata/test/test_windows.py +++ b/src/allmydata/test/test_windows.py @@ -117,7 +117,8 @@ class GetArgvTests(SyncTestCase): from subprocess import ( PIPE, ) - returncode = Popen([executable, save_argv_path.path] + argv, stdin=PIPE, stdout=PIPE, stderr=PIPE).wait() + argv = [executable, save_argv_path.path] + argv + returncode = Popen(argv, stdin=PIPE, stdout=PIPE, stderr=PIPE).wait() self.assertThat( 0, Equals(returncode),