summary refs log tree commit diff stats
path: root/tests/threads/threadex.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/threads/threadex.nim')
-rw-r--r--tests/threads/threadex.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/threads/threadex.nim b/tests/threads/threadex.nim
index 679bfcb12..e61ce5c9c 100644
--- a/tests/threads/threadex.nim
+++ b/tests/threads/threadex.nim
@@ -1,5 +1,5 @@
 discard """
-  outputsub: "All rights reserved."
+  outputsub: "Just a simple text for test"
 """
 
 type
@@ -28,7 +28,7 @@ proc consume() {.thread.} =
 proc produce() {.thread.} =
   prodId = getThreadId()
   var m: TMsg
-  var input = open("readme.txt")
+  var input = open("tests/dummy.txt")
   var line = ""
   while input.readLine(line):
     m.data = line