From 1d04a99adba7730e496d855964c2cfc33e929c46 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Sun, 24 Jun 2018 04:34:59 +0100 Subject: [PATCH] issue #275: missing check_output() call --- tests/responder_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/responder_test.py b/tests/responder_test.py index 3f6f66a9..86e6dd7e 100644 --- a/tests/responder_test.py +++ b/tests/responder_test.py @@ -30,7 +30,7 @@ class GoodModulesTest(testlib.RouterMixin, unittest2.TestCase): # Ensure a program composed of a single script can be imported # successfully. args = [sys.executable, testlib.data_path('self_contained_program.py')] - output = subprocess.check_output(args) + output = testlib.subprocess__check_output(args) self.assertEquals(output, "['__main__', 50]\n")