mirror of
https://github.com/django/django.git
synced 2025-11-03 13:23:19 +00:00
Fixed selenium test failure of JavascriptI18nTests.
The failure was introduced in dd1ea70779.
The tests wouldn't start due to a "Dependency on unknown app" error.
This commit is contained in:
parent
82e4f956e3
commit
b8cc5f3cd4
1 changed files with 5 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue