diff --git a/src/functional_tests/tests.py b/src/functional_tests/tests.py index d1de157..c856329 100644 --- a/src/functional_tests/tests.py +++ b/src/functional_tests/tests.py @@ -1,4 +1,4 @@ -from django.test import LiveServerTestCase +from django.contrib.staticfiles.testing import StaticLiveServerTestCase from selenium import webdriver from selenium.webdriver.common.keys import Keys @@ -8,7 +8,7 @@ import unittest MAX_WAIT = 10 -class NewVisitorTest(LiveServerTestCase): +class NewVisitorTest(StaticLiveServerTestCase): def setUp(self): self.browser = webdriver.Firefox()