Skip to content

Commit d3a3e7e

Browse files
committed
fix: correct test syncqueue types
1 parent b587ff5 commit d3a3e7e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/fixture/workable.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
def two_sync_workables(
1616
factory_ctx: SpawnContext,
1717
) -> tuple[Workable[str, str], Workable[str, str]]:
18-
que_1 = SyncQueue[str, str](factory_ctx, 2, str_to_bytes, bytes_to_str)
19-
que_2 = SyncQueue[str, str](factory_ctx, 2, str_to_bytes, bytes_to_str)
18+
que_1 = SyncQueue[str](factory_ctx, 2, str_to_bytes, bytes_to_str)
19+
que_2 = SyncQueue[str](factory_ctx, 2, str_to_bytes, bytes_to_str)
2020
return (
2121
Workable[str, str](factory_ctx, PassThrough(), que_1),
2222
Workable[str, str](factory_ctx, PassThrough(), que_2),

0 commit comments

Comments
 (0)