From 426387630c8c92f5092c079a10d55d52c7b15658 Mon Sep 17 00:00:00 2001 From: David Sanders <> Date: Thu, 21 Mar 2024 00:40:11 +1100 Subject: [PATCH] Wrap comments at 79 --- django/test/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/django/test/utils.py b/django/test/utils.py index 75139f2a05..db11e0bcba 100644 --- a/django/test/utils.py +++ b/django/test/utils.py @@ -368,9 +368,9 @@ def teardown_databases(old_config, verbosity, parallel=0, keepdb=False): ) connection.creation.destroy_test_db(old_name, verbosity, keepdb) - # When we keep the database and have serialized content, we need to roll back the data - # at the end of the test suite. When using a parallelized test, the data must be restored - # per clone. + # When we keep the database and have serialized content, we need to + # roll back the data at the end of the test suite. When using a + # parallelized test, the data must be restored per clone. if keepdb and hasattr(connection, "_test_serialized_contents"): serialized_data = connection._test_serialized_contents old_settings = dict(connection.settings_dict)