Kaydet (Commit) b8cc5f3c authored tarafından Tim Graham's avatar Tim Graham

Fixed selenium test failure of JavascriptI18nTests.

The failure was introduced in dd1ea707.
The tests wouldn't start due to a "Dependency on unknown app" error.
üst 82e4f956
...@@ -210,8 +210,11 @@ skip_selenium = not os.environ.get('DJANGO_SELENIUM_TESTS', False) ...@@ -210,8 +210,11 @@ skip_selenium = not os.environ.get('DJANGO_SELENIUM_TESTS', False)
@override_settings(ROOT_URLCONF='view_tests.urls') @override_settings(ROOT_URLCONF='view_tests.urls')
class JavascriptI18nTests(LiveServerTestCase): class JavascriptI18nTests(LiveServerTestCase):
# The test cases use translations from these apps. # The test cases use fixtures & translations from these apps.
available_apps = ['django.contrib.admin', 'view_tests'] available_apps = [
'django.contrib.admin', 'django.contrib.auth',
'django.contrib.contenttypes', 'view_tests',
]
webdriver_class = 'selenium.webdriver.firefox.webdriver.WebDriver' webdriver_class = 'selenium.webdriver.firefox.webdriver.WebDriver'
@classmethod @classmethod
......
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