Skip to content

Commit d315730

Browse files
author
Joel Collins
committed
Code formatting
1 parent 9bab402 commit d315730

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_core_tasks_thread.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,9 @@ def task_func():
106106
assert task_obj.log[0]["filename"] == os.path.basename(__file__)
107107

108108
task_obj.join()
109-
assert len(task_obj.log) == 11, "Didn't get the right number of log entries - are INFO entries being logged?"
109+
assert (
110+
len(task_obj.log) == 11
111+
), "Didn't get the right number of log entries - are INFO entries being logged?"
110112

111113

112114
def test_task_log_without_thread():

0 commit comments

Comments
 (0)