summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyramid/tests/test_scaffolds/test_copydir.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/pyramid/tests/test_scaffolds/test_copydir.py b/pyramid/tests/test_scaffolds/test_copydir.py
index 42edd9d23..68cefbe6e 100644
--- a/pyramid/tests/test_scaffolds/test_copydir.py
+++ b/pyramid/tests/test_scaffolds/test_copydir.py
@@ -170,9 +170,11 @@ class Test_makedirs(unittest.TestCase):
def test_makedirs_parent_dir(self):
import shutil
- target = "/tmp/nonexistent_dir/nonexistent_subdir"
+ import tempfile
+ tmpdir = tempfile.mkdtemp()
+ target = os.path.join(tmpdir, 'nonexistent_subdir')
self._callFUT(target, 2, None)
- shutil.rmtree("/tmp/nonexistent_dir")
+ shutil.rmtree(tmpdir)
class Test_support_functions(unittest.TestCase):