summary refs log tree commit diff stats
path: root/tests/bind
diff options
context:
space:
mode:
authordef <dennis@felsin9.de>2015-04-21 11:17:24 +0200
committerdef <dennis@felsin9.de>2015-04-21 11:17:24 +0200
commitfc76c93a19b925fc7cfc1091af80e6a8bb6ecb57 (patch)
treee930a30bdcef6b886039b6d999a090fdaa1723f4 /tests/bind
parentd203d6fad44547d2291e33712057d154e18c0361 (diff)
downloadNim-fc76c93a19b925fc7cfc1091af80e6a8bb6ecb57.tar.gz
Fix expected tester messages
Diffstat (limited to 'tests/bind')
-rw-r--r--tests/bind/tnicerrorforsymchoice.nim6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/bind/tnicerrorforsymchoice.nim b/tests/bind/tnicerrorforsymchoice.nim
index bf6d92927..5145fdcff 100644
--- a/tests/bind/tnicerrorforsymchoice.nim
+++ b/tests/bind/tnicerrorforsymchoice.nim
@@ -1,17 +1,17 @@
 discard """
   line: 18
-  errormsg: "type mismatch: got (proc (TScgi) | proc (AsyncSocket, StringTableRef, string)"
+  errormsg: "type mismatch: got (proc (s: TScgi) | proc (client: AsyncSocket, headers: StringTableRef, input: string){.gcsafe, locks: 0.}"
 """
 
 #bug #442
 import scgi, sockets, asyncio, strtabs
 proc handleSCGIRequest[TScgi: ScgiState | AsyncScgiState](s: TScgi) =
   discard
-proc handleSCGIRequest(client: AsyncSocket, headers: StringTableRef, 
+proc handleSCGIRequest(client: AsyncSocket, headers: StringTableRef,
                        input: string) =
   discard
 
-proc test(handle: proc (client: AsyncSocket, headers: StringTableRef, 
+proc test(handle: proc (client: AsyncSocket, headers: StringTableRef,
                         input: string), b: int) =
   discard