diff options
| author | Florian Apolloner <florian@apolloner.eu> | 2014-01-03 00:44:49 +0100 |
|---|---|---|
| committer | Florian Apolloner <florian@apolloner.eu> | 2014-01-03 00:44:49 +0100 |
| commit | 7d0a5190328f277b97b1f55171e1fecb22a1e461 (patch) | |
| tree | 37355f20d789f72872f40654cd1628448aa39213 | |
| parent | b1a399b8644a2b705c2ceb4fabb47172c31ff6c9 (diff) | |
Revert "Fixed #21227 -- Added workaround for selenium test failures"
This reverts commit 08c9ab5a0f564a3ac7803e6a97fae855f2e0524e.
| -rw-r--r-- | django/contrib/admin/tests.py | 1 | ||||
| -rw-r--r-- | tests/view_tests/tests/test_i18n.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/django/contrib/admin/tests.py b/django/contrib/admin/tests.py index c035392e16..72cb0606f3 100644 --- a/django/contrib/admin/tests.py +++ b/django/contrib/admin/tests.py @@ -32,7 +32,6 @@ 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 35b37b3ea1..a939fd6fc1 100644 --- a/tests/view_tests/tests/test_i18n.py +++ b/tests/view_tests/tests/test_i18n.py @@ -192,7 +192,6 @@ class JavascriptI18nTests(LiveServerTestCase): @classmethod def tearDownClass(cls): - cls.selenium.refresh() # see ticket #21227 cls.selenium.quit() super(JavascriptI18nTests, cls).tearDownClass() |
