diff options
author | Araq <rumpf_a@web.de> | 2012-08-16 19:05:38 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-08-16 19:05:38 +0200 |
commit | 0cac8d9b6fa2c982468899db109a964df979b186 (patch) | |
tree | 995c58c1e643d8177a183c951b7bd498f5cfbbc1 /tests/reject/tnocontains.nim | |
parent | e4c432387eb80817ed2557cfbd100be7fb0525e7 (diff) | |
download | Nim-0cac8d9b6fa2c982468899db109a964df979b186.tar.gz |
made tests green again
Diffstat (limited to 'tests/reject/tnocontains.nim')
-rw-r--r-- | tests/reject/tnocontains.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/reject/tnocontains.nim b/tests/reject/tnocontains.nim index 779c64821..4f4951478 100644 --- a/tests/reject/tnocontains.nim +++ b/tests/reject/tnocontains.nim @@ -7,5 +7,5 @@ discard """ # shouldn't compile since it doesn't do what you think it does without # importing strutils: -let x = "abc" in "abcdef" +let x = "abcdef".contains("abc") echo x |