diff options
author | Araq <rumpf_a@web.de> | 2018-11-16 19:54:49 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-11-16 19:54:49 +0100 |
commit | 6279b0587a9551d8c205e682d28a731f2986c456 (patch) | |
tree | 436169010f96ee20521b1bf64fc2cf4215674976 /tests/threads | |
parent | 3f6168b3372013c0d4b938e6a83849199d9756c9 (diff) | |
download | Nim-6279b0587a9551d8c205e682d28a731f2986c456.tar.gz |
make tests green again
Diffstat (limited to 'tests/threads')
-rw-r--r-- | tests/threads/tactors2.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/threads/tactors2.nim b/tests/threads/tactors2.nim index b011ef140..e8afe203c 100644 --- a/tests/threads/tactors2.nim +++ b/tests/threads/tactors2.nim @@ -12,7 +12,7 @@ proc thread_proc(input: some_type): some_type {.thread.} = result.bla = 1 proc main() = - var actorPool: TActorPool[some_type, some_type] + var actorPool: ActorPool[some_type, some_type] createActorPool(actorPool, 1) var some_data: some_type |