diff options
| author | Tim Graham <timograham@gmail.com> | 2014-12-01 16:42:48 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-12-01 16:42:48 -0500 |
| commit | b8cc5f3cd4c70518dceb894edf9717abff79f0b4 (patch) | |
| tree | a320189de6eac4008caacfc6967ec0161fa16220 | |
| parent | 82e4f956e3faa4a48fe3c90e02673c1a916d6943 (diff) | |
Fixed selenium test failure of JavascriptI18nTests.
The failure was introduced in dd1ea70779adff294140eddb0229c382e12f32f3.
The tests wouldn't start due to a "Dependency on unknown app" error.
| -rw-r--r-- | tests/view_tests/tests/test_i18n.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/view_tests/tests/test_i18n.py b/tests/view_tests/tests/test_i18n.py index cf6b8dc554..5185a5c458 100644 --- a/tests/view_tests/tests/test_i18n.py +++ b/tests/view_tests/tests/test_i18n.py @@ -210,8 +210,11 @@ skip_selenium = not os.environ.get('DJANGO_SELENIUM_TESTS', False) @override_settings(ROOT_URLCONF='view_tests.urls') class JavascriptI18nTests(LiveServerTestCase): - # The test cases use translations from these apps. - available_apps = ['django.contrib.admin', 'view_tests'] + # The test cases use fixtures & translations from these apps. + available_apps = [ + 'django.contrib.admin', 'django.contrib.auth', + 'django.contrib.contenttypes', 'view_tests', + ] webdriver_class = 'selenium.webdriver.firefox.webdriver.WebDriver' @classmethod |
