issue #275: missing check_output() call
This commit is contained in:
parent
4649e11da3
commit
1d04a99adb
|
@ -30,7 +30,7 @@ class GoodModulesTest(testlib.RouterMixin, unittest2.TestCase):
|
||||||
# Ensure a program composed of a single script can be imported
|
# Ensure a program composed of a single script can be imported
|
||||||
# successfully.
|
# successfully.
|
||||||
args = [sys.executable, testlib.data_path('self_contained_program.py')]
|
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")
|
self.assertEquals(output, "['__main__', 50]\n")
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue