Commit bc5bb3e1 authored by Tim Graham's avatar Tim Graham
Browse files

[1.7.x] 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.

Backport of b8cc5f3c from master
parent 943b1047
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -209,8 +209,11 @@ skip_selenium = not os.environ.get('DJANGO_SELENIUM_TESTS', False)
@unittest.skipIf(skip_selenium, 'Selenium tests not requested')
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',
    ]
    urls = 'view_tests.urls'
    webdriver_class = 'selenium.webdriver.firefox.webdriver.WebDriver'