diff options
author | Aman Gupta <aman@tmm1.net> | 2015-10-01 12:25:39 -0700 |
---|---|---|
committer | Aman Gupta <aman@tmm1.net> | 2015-10-01 12:25:39 -0700 |
commit | 97c2574e8d6488118f85d8dff6cd88d7787f809b (patch) | |
tree | 684b8d848e2166dc18daa42acbf69bf25b1139ec /tests/objects | |
parent | f89c247a89ff98e36ad8abcc44d2e96935356f50 (diff) | |
download | Nim-97c2574e8d6488118f85d8dff6cd88d7787f809b.tar.gz |
fix test failure due to "illegal recursion" error message
FAIL: tillegal_recursion.nim Test "tests/objects/tillegal_recursion.nim" in category "objects" Failure: reMsgsDiffer Expected: illegal recursion in type 'object' Gotten: inheritance only works with non-final objects
Diffstat (limited to 'tests/objects')
-rw-r--r-- | tests/objects/tillegal_recursion.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/objects/tillegal_recursion.nim b/tests/objects/tillegal_recursion.nim index 171a04f87..222139101 100644 --- a/tests/objects/tillegal_recursion.nim +++ b/tests/objects/tillegal_recursion.nim @@ -1,5 +1,5 @@ discard """ - errormsg: "illegal recursion in type 'object'" + errormsg: "inheritance only works with non-final objects" line: 7 """ # bug #1691 |