From 7849622c6477e5f00fb1032c58f8196ebb337cde Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 09:34:25 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks --- tests/test_debug_logging.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/test_debug_logging.py b/tests/test_debug_logging.py index d93bc80..d74648f 100644 --- a/tests/test_debug_logging.py +++ b/tests/test_debug_logging.py @@ -17,16 +17,16 @@ def test_sqliterdb_debug_default(self) -> None: def test_sqliterdb_debug_set_false(self) -> None: """Test that the default value for the debug flag is False.""" db = SqliterDB(":memory:", debug=False) # Set debug argument to False - assert ( - db.debug is False - ), "The debug flag should be False when explicitly passed as False." + assert db.debug is False, ( + "The debug flag should be False when explicitly passed as False." + ) def test_sqliterdb_debug_set_true(self) -> None: """Test that the debug flag can be set to True.""" db = SqliterDB(":memory:", debug=True) # Set debug argument to True - assert ( - db.debug is True - ), "The debug flag should be True when explicitly passed as True." + assert db.debug is True, ( + "The debug flag should be True when explicitly passed as True." + ) def test_debug_sql_output_basic_query( self, db_mock_complex_debug: SqliterDB, caplog