diff options
| author | Kevin Christopher Henry <k@severian.com> | 2013-10-24 15:01:25 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-24 15:07:41 -0400 |
| commit | 08c9ab5a0f564a3ac7803e6a97fae855f2e0524e (patch) | |
| tree | b404a48bc2f95c1ad5f4a50cd5d2ef862e7d410d | |
| parent | 43569647ab234cd1d2f4d41399b97b4b793d573a (diff) | |
Fixed #21227 -- Added workaround for selenium test failures
Added a refresh() before quit() in the selenium tests, since this
solves the problem of spurious test failures in some environments.
| -rw-r--r-- | django/contrib/admin/tests.py | 1 | ||||
| -rw-r--r-- | tests/view_tests/tests/test_i18n.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/django/contrib/admin/tests.py b/django/contrib/admin/tests.py index 6e11963a94..248a5798dd 100644 --- a/django/contrib/admin/tests.py +++ b/django/contrib/admin/tests.py @@ -32,6 +32,7 @@ class AdminSeleniumWebDriverTestCase(StaticLiveServerCase): @classmethod def _tearDownClassInternal(cls): if hasattr(cls, 'selenium'): + cls.selenium.refresh() # see ticket #21227 cls.selenium.quit() super(AdminSeleniumWebDriverTestCase, cls)._tearDownClassInternal() diff --git a/tests/view_tests/tests/test_i18n.py b/tests/view_tests/tests/test_i18n.py index 777fc24bb1..42f82251f5 100644 --- a/tests/view_tests/tests/test_i18n.py +++ b/tests/view_tests/tests/test_i18n.py @@ -189,6 +189,7 @@ class JavascriptI18nTests(LiveServerTestCase): @classmethod def tearDownClass(cls): + cls.selenium.refresh() # see ticket #21227 cls.selenium.quit() super(JavascriptI18nTests, cls).tearDownClass() |
