Skip to content

Commit c12df2c

Browse files
committed
chore: format
1 parent cc8ea41 commit c12df2c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

unit_tests/sources/declarative/async_job/test_job_tracker.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@ def test_given_limit_is_less_than_1_when_init_then_set_to_1(limit: int):
5151
("limit", "config", "expected_limit"),
5252
[
5353
("2", {}, 2),
54-
("{{ config['max_concurrent_async_job_count'] }}", {"max_concurrent_async_job_count": 2}, 2),
54+
(
55+
"{{ config['max_concurrent_async_job_count'] }}",
56+
{"max_concurrent_async_job_count": 2},
57+
2,
58+
),
5559
],
5660
)
5761
def test_given_limit_as_string_when_init_then_interpolate_correctly(limit, config, expected_limit):

0 commit comments

Comments
 (0)