diff options
author | Zahary Karadjov <zahary@gmail.com> | 2017-06-19 23:42:15 +0300 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-06-20 11:29:42 +0200 |
commit | 7db883e4d3a8f32a8df0b20365bf7bdedd5efabb (patch) | |
tree | 26c3b3c0866c5ab6c3040ddc151f20ac2d846c8b /tests/bind | |
parent | 07d50cedf012ff8ca39c61c0ba5c43e5d588e630 (diff) | |
download | Nim-7db883e4d3a8f32a8df0b20365bf7bdedd5efabb.tar.gz |
make some tests green again
Diffstat (limited to 'tests/bind')
-rw-r--r-- | tests/bind/tinvalidbindtypedesc.nim | 2 | ||||
-rw-r--r-- | tests/bind/tnicerrorforsymchoice.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/bind/tinvalidbindtypedesc.nim b/tests/bind/tinvalidbindtypedesc.nim index 5b2f51110..7704d2cb7 100644 --- a/tests/bind/tinvalidbindtypedesc.nim +++ b/tests/bind/tinvalidbindtypedesc.nim @@ -1,6 +1,6 @@ discard """ line: 10 - errormsg: "type mismatch: got (typedesc[float], string)" + errormsg: "type mismatch: got (type float, string)" """ proc foo(T: typedesc; some: T) = diff --git a/tests/bind/tnicerrorforsymchoice.nim b/tests/bind/tnicerrorforsymchoice.nim index bd00188fa..1431720e0 100644 --- a/tests/bind/tnicerrorforsymchoice.nim +++ b/tests/bind/tnicerrorforsymchoice.nim @@ -1,6 +1,6 @@ discard """ line: 18 - errormsg: "type mismatch: got (proc (s: TScgi) | proc (client: AsyncSocket, headers: StringTableRef, input: string){.noSideEffect, gcsafe, locks: 0.}" + errormsg: "type mismatch: got (proc (s: TScgi: ScgiState or AsyncScgiState) | proc (client: AsyncSocket, headers: StringTableRef, input: string){.noSideEffect, gcsafe, locks: 0.}" """ #bug #442 |