From 9c19aff7c7561e3a82978a272ecdaad40dda5c00 Mon Sep 17 00:00:00 2001 From: django-bot Date: Thu, 3 Feb 2022 20:24:19 +0100 Subject: Refs #33476 -- Reformatted code with Black. --- tests/postgres_tests/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/postgres_tests/__init__.py') diff --git a/tests/postgres_tests/__init__.py b/tests/postgres_tests/__init__.py index 2b84fc25db..6f02531ed0 100644 --- a/tests/postgres_tests/__init__.py +++ b/tests/postgres_tests/__init__.py @@ -6,18 +6,18 @@ from django.db import connection from django.test import SimpleTestCase, TestCase, modify_settings -@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests") +@unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL specific tests") class PostgreSQLSimpleTestCase(SimpleTestCase): pass -@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests") +@unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL specific tests") class PostgreSQLTestCase(TestCase): pass -@unittest.skipUnless(connection.vendor == 'postgresql', "PostgreSQL specific tests") +@unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL specific tests") # To locate the widget's template. -@modify_settings(INSTALLED_APPS={'append': 'django.contrib.postgres'}) +@modify_settings(INSTALLED_APPS={"append": "django.contrib.postgres"}) class PostgreSQLWidgetTestCase(WidgetTest, PostgreSQLSimpleTestCase): pass -- cgit v1.3