diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-12-05 05:32:23 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-12-05 05:32:23 (GMT) |
commit | ac28b796d80f869f39662491446145106960a886 (patch) | |
tree | 1877f8c5cd3a304a1890e81034555987fd9afbc1 /Lib/test/test_fork1.py | |
parent | 939614c48c3b0b5adeb408294a032118411ab987 (diff) | |
download | cpython-ac28b796d80f869f39662491446145106960a886.zip cpython-ac28b796d80f869f39662491446145106960a886.tar.gz cpython-ac28b796d80f869f39662491446145106960a886.tar.bz2 |
Issue #25795: Fix several tests to run independently.
These were broken in 3aec776fc796 when they were converted
away from using support.run_unittest(). Oops :)
Initial patch by Felippe da Motta Raposo.
Diffstat (limited to 'Lib/test/test_fork1.py')
-rw-r--r-- | Lib/test/test_fork1.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_fork1.py b/Lib/test/test_fork1.py index eeba306..da46fe5 100644 --- a/Lib/test/test_fork1.py +++ b/Lib/test/test_fork1.py @@ -6,6 +6,7 @@ import os import signal import sys import time +import unittest from test.fork_wait import ForkWait from test.support import (reap_children, get_attribute, |