diff --git a/tests/test_utils.py b/tests/test_utils.py index 621d7b6..6d68a1d 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -32,7 +32,7 @@ def test(self, tables, expected_sql): truncate_tables(connection, tables) if tables: connection.cursor.assert_called_once() - assert mock_cursor.execute.call_args_list == [call(expected_sql),] + assert mock_cursor.execute.call_args_list == [call(expected_sql)] mock_cursor.close.assert_called_once() else: connection.cursor.assert_not_called()