more dubious test hacking

This commit is contained in:
Torsten Ruger
2015-11-02 17:32:06 +02:00
parent 0094a89707
commit 23e09b7149
2 changed files with 5 additions and 4 deletions

View File

@ -42,7 +42,7 @@ HERE
def test_class_field_value
@string_input = <<HERE
class Object
field int boo = 1
field int boo1 = 1
int main()
return 1
end
@ -55,9 +55,9 @@ HERE
def test_class_field
@string_input = <<HERE
class Object
field int boo
field int boo2
int main()
return self.boo
return self.boo2
end
end
HERE