From d6eaf7c0183cd04b78f2a55e1d60bb7e59598310 Mon Sep 17 00:00:00 2001 From: chillaranand Date: Sat, 21 Jan 2017 18:43:44 +0530 Subject: Refs #23919 -- Replaced super(ClassName, self) with super(). --- tests/postgres_tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/postgres_tests/__init__.py') diff --git a/tests/postgres_tests/__init__.py b/tests/postgres_tests/__init__.py index dbb913dbba..49f1220888 100644 --- a/tests/postgres_tests/__init__.py +++ b/tests/postgres_tests/__init__.py @@ -13,4 +13,4 @@ class PostgreSQLTestCase(TestCase): from django.contrib.postgres.signals import register_hstore_handler connection_created.disconnect(register_hstore_handler) - super(PostgreSQLTestCase, cls).tearDownClass() + super().tearDownClass() -- cgit v1.3