From a35d7fd1e1c8e2a1e95b6d16949f9fb3977f15cb Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 4 Oct 2012 06:45:22 -0400 Subject: [1.4.X] Fixed #19051 - Fixed Selenium tearDownClass method; thanks glarrain for the report. Backport of a1a5c0854f from master --- docs/topics/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/topics/testing.txt') 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/')) -- cgit v1.3