diff options
| author | Florian Apolloner <florian@apolloner.eu> | 2013-09-18 16:54:30 +0200 |
|---|---|---|
| committer | Florian Apolloner <florian@apolloner.eu> | 2013-09-18 16:54:30 +0200 |
| commit | 87c8de2a06433a6d87a85a8f79e378feafa5ed46 (patch) | |
| tree | 728a969a88d9cdb3f409b5754a7c14710df21126 | |
| parent | 72f7932cfbe079f5063a2f1b4c09b520d99f5e42 (diff) | |
Revert "[1.5.x] Silenced last sporadic failure on 1.5."
This reverts commit 6a708cd654fe63278ea8a14b3e44da847c62ebf4.
Reverted since it only moved the failures to some other tests and it apperently
only worked by accident. Patched selenium for now to include:
https://github.com/SeleniumHQ/selenium/pull/118
which seems to be the root cause for sporadic extra requests to the live server,
which then cause all sorts of issues.
| -rw-r--r-- | tests/regressiontests/forms/tests/widgets.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/regressiontests/forms/tests/widgets.py b/tests/regressiontests/forms/tests/widgets.py index 640e9221b2..599ba534cf 100644 --- a/tests/regressiontests/forms/tests/widgets.py +++ b/tests/regressiontests/forms/tests/widgets.py @@ -1116,12 +1116,6 @@ class LiveWidgetTests(AdminSeleniumWebDriverTestCase): article = Article.objects.get(pk=article.pk) # Should be "\nTst\n" after #19251 is fixed self.assertEqual(article.content, "\r\nTst\r\n") - # So now it's becoming obscure; we do have threading issues here, so this - # test fails sometimes for sqlite, I could only ever witness it on jenkins. - # As long as 1.5 is supported we manually "fix" this test by quitting - # selenium. No idea why closing the browser window isn't enough, but hey… - self.selenium.quit() - delattr(self.__class__, 'selenium') @python_2_unicode_compatible |
