diff options
| author | Tim Graham <timograham@gmail.com> | 2012-10-04 06:45:22 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2012-10-04 07:46:53 -0400 |
| commit | a35d7fd1e1c8e2a1e95b6d16949f9fb3977f15cb (patch) | |
| tree | 8e9bfc6e54f8da99cd8940cc0321a8d03bafe074 /docs/topics/testing.txt | |
| parent | 8868a067e02b4fe9f1c669f06e90fc28171b9758 (diff) | |
[1.4.X] Fixed #19051 - Fixed Selenium tearDownClass method; thanks glarrain for the report.
Backport of a1a5c0854f from master
Diffstat (limited to 'docs/topics/testing.txt')
| -rw-r--r-- | docs/topics/testing.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt index ad4ef50550..53df1f54c5 100644 --- a/docs/topics/testing.txt +++ b/docs/topics/testing.txt @@ -1922,8 +1922,8 @@ Then, add a ``LiveServerTestCase``-based test to your app's tests module @classmethod def tearDownClass(cls): - super(MySeleniumTests, cls).tearDownClass() cls.selenium.quit() + super(MySeleniumTests, cls).tearDownClass() def test_login(self): self.selenium.get('%s%s' % (self.live_server_url, '/login/')) |
