1
0
Fork 0
forked from github/pelican

Merge pull request #811 from cdunklau/clean_up_tests

Nitpicking - tempdir naming, also backslashes are bad
This commit is contained in:
Justin Mayer 2013-03-30 10:17:09 -07:00
commit f35206660b
4 changed files with 38 additions and 37 deletions

View file

@ -26,7 +26,7 @@ class TestWebAssets(unittest.TestCase):
"""Base class for testing webassets."""
def setUp(self, override=None):
self.temp_path = mkdtemp()
self.temp_path = mkdtemp(prefix='pelicantests.')
settings = {
'PATH': os.path.join(CUR_DIR, 'content', 'TestCategory'),
'OUTPUT_PATH': self.temp_path,