Skip to content

Commit

Permalink
Fixed staticfiles test on Windows; refs #23986.
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Mar 11, 2015
1 parent ccff08c commit 389bacc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/staticfiles_tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def test_cleared_not_found(self):
self.assertFileNotFound('cleared.txt')

def test_dir_not_exists(self, **kwargs):
shutil.rmtree(settings.STATIC_ROOT)
shutil.rmtree(six.text_type(settings.STATIC_ROOT))
super(TestCollectionClear, self).run_collectstatic(clear=True)


Expand Down

0 comments on commit 389bacc

Please sign in to comment.