summary refs log tree commit diff stats
path: root/tests/threads/ttryrecv.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/threads/ttryrecv.nim')
-rw-r--r--tests/threads/ttryrecv.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/threads/ttryrecv.nim b/tests/threads/ttryrecv.nim
index 28529b5ac..fc1f21321 100644
--- a/tests/threads/ttryrecv.nim
+++ b/tests/threads/ttryrecv.nim
@@ -15,7 +15,7 @@ proc doAction(outC: PComm) {.thread.} =
     send(outC[], i)
 
 var
-  thr: TThread[PComm]
+  thr: Thread[PComm]
   chan: TChannel[int]
 
 open(chan)