summary refs log tree commit diff stats
path: root/tests/objects
diff options
context:
space:
mode:
authorAman Gupta <aman@tmm1.net>2015-10-01 12:25:39 -0700
committerAman Gupta <aman@tmm1.net>2015-10-01 12:25:39 -0700
commit97c2574e8d6488118f85d8dff6cd88d7787f809b (patch)
tree684b8d848e2166dc18daa42acbf69bf25b1139ec /tests/objects
parentf89c247a89ff98e36ad8abcc44d2e96935356f50 (diff)
downloadNim-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.nim2
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