From ffcd6d1ff5569abc82db4453b8e75353412f6953 Mon Sep 17 00:00:00 2001 From: Philipp Gruener Date: Tue, 16 Jul 2024 22:52:31 +0200 Subject: [PATCH] fix: Added missing newlines after merge (for pre-commit checks) --- frappe/tests/test_db.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/tests/test_db.py b/frappe/tests/test_db.py index d4ccb78d65..63c0dba7da 100644 --- a/frappe/tests/test_db.py +++ b/frappe/tests/test_db.py @@ -1080,6 +1080,7 @@ class TestSqlIterator(FrappeTestCase): with frappe.db.unbuffered_cursor(): self.test_db_sql_iterator() + class ExtFrappeTestCase(FrappeTestCase): def assertSqlException(self): class SqlExceptionContextManager: @@ -1259,6 +1260,7 @@ class TestPostgresSchemaQueryIndependence(ExtFrappeTestCase): del frappe.conf["db_schema"] + class TestDbConnectWithEnvCredentials(FrappeTestCase): current_site = frappe.local.site