fixing indexes makes test work

forgot my own rule: all parfait works in 1 based lists
This commit is contained in:
Torsten Ruger
2015-11-07 20:10:55 +02:00
parent a1aa6b58ac
commit 8c68ffc7a4
4 changed files with 13 additions and 3 deletions

View File

@ -1,7 +1,7 @@
class Layout < Object
Class object_class()
get_internal(1)
get_internal(2)
end
end

View File

@ -1,7 +1,7 @@
class Object
Layout get_layout()
return get_internal(0)
return get_internal(1)
end
Class get_class()