diff options
author | Éric Araujo <merwok@netwok.org> | 2011-10-19 06:49:20 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-10-19 06:49:20 (GMT) |
commit | f3f283a1cbd8b87c911edc0e93baf3d0bfec672e (patch) | |
tree | 83cd6088fa077e31c04c42148318539538d8ff65 /Lib/packaging/tests/test_command_clean.py | |
parent | 79d9c42b04813dc81d91127ec0ffb6d4735e2c0e (diff) | |
download | cpython-f3f283a1cbd8b87c911edc0e93baf3d0bfec672e.zip cpython-f3f283a1cbd8b87c911edc0e93baf3d0bfec672e.tar.gz cpython-f3f283a1cbd8b87c911edc0e93baf3d0bfec672e.tar.bz2 |
Clean up some idioms in packaging tests.
- Use os.makedirs (I had forgotten about it!)
- Let TempdirManager.write_file call os.path.join for us
- Remove custom command added by test_dist
- Use a skip instead of hiding a method with an underscore
- Address pyflakes warnings
Diffstat (limited to 'Lib/packaging/tests/test_command_clean.py')
-rw-r--r-- | Lib/packaging/tests/test_command_clean.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/packaging/tests/test_command_clean.py b/Lib/packaging/tests/test_command_clean.py index 8d29e4d..ab944ed 100644 --- a/Lib/packaging/tests/test_command_clean.py +++ b/Lib/packaging/tests/test_command_clean.py @@ -23,7 +23,7 @@ class cleanTestCase(support.TempdirManager, support.LoggingCatcher, if name == 'build_base': continue for f in ('one', 'two', 'three'): - self.write_file(os.path.join(path, f)) + self.write_file((path, f)) # let's run the command cmd.all = True |