diff options
author | Araq <rumpf_a@web.de> | 2017-06-09 13:34:45 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-06-09 13:34:45 +0200 |
commit | 280941aca675d91abbd348aa45848c6e0585c879 (patch) | |
tree | b68a9b9cec175f1929813e2a739d39c7e6e2c8c7 | |
parent | 4e19c4a2529e27708168fab9d20b31a0c57f5348 (diff) | |
download | Nim-280941aca675d91abbd348aa45848c6e0585c879.tar.gz |
make tests green again
-rw-r--r-- | tests/modules/tmismatchedvisibility.nim | 2 | ||||
-rw-r--r-- | tests/pragmas/tused.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/modules/tmismatchedvisibility.nim b/tests/modules/tmismatchedvisibility.nim index 325c729c0..91b639a27 100644 --- a/tests/modules/tmismatchedvisibility.nim +++ b/tests/modules/tmismatchedvisibility.nim @@ -1,6 +1,6 @@ discard """ line: 8 - errormsg: "public implementation 'tmismatchedvisibility.foo(a: int)' has non-public forward declaration in " + errormsg: "public implementation 'tmismatchedvisibility.foo(a: int)[declared in tmismatchedvisibility.nim(6,5)]' has non-public forward declaration in " """ proc foo(a: int): int diff --git a/tests/pragmas/tused.nim b/tests/pragmas/tused.nim index 4a317f874..389863aef 100644 --- a/tests/pragmas/tused.nim +++ b/tests/pragmas/tused.nim @@ -1,7 +1,7 @@ discard """ nimout: ''' compile start -tused.nim(15, 8) Hint: 'tused.echoSub(a: int, b: int)' is declared but not used [XDeclaredButNotUsed] +tused.nim(15, 8) Hint: 'tused.echoSub(a: int, b: int)[declared in tused.nim(15,7)]' is declared but not used [XDeclaredButNotUsed] compile end''' output: "8\n8" """ |