Commit 6f55a2f7 by Timothée Peignier

fix regression test

parent d42fe152
...@@ -19,6 +19,7 @@ INSTALLED_APPS = [ ...@@ -19,6 +19,7 @@ INSTALLED_APPS = [
'django.contrib.admin', 'django.contrib.admin',
'pipeline', 'pipeline',
'tests', 'tests',
'tests.tests'
] ]
ROOT_URLCONF = 'tests.urls' ROOT_URLCONF = 'tests.urls'
......
...@@ -27,6 +27,6 @@ class StorageTest(TestCase): ...@@ -27,6 +27,6 @@ class StorageTest(TestCase):
def test_find_storage(self): def test_find_storage(self):
try: try:
storage = PipelineFinderStorage() storage = PipelineFinderStorage()
storage.find_storage('testing.css') storage.find_storage('app.css')
except ValueError: except ValueError:
self.fail() self.fail()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment