X-Git-Url: http://nitlanguage.org diff --git a/tests/base_init_super_call.nit b/tests/base_init_super_call.nit index 5d863ab..34cebdd 100644 --- a/tests/base_init_super_call.nit +++ b/tests/base_init_super_call.nit @@ -20,22 +20,22 @@ end class B1 super A - #alt1#init do super + #alt1#init is old_style_init do super end class B2 super A - init do super(3) + init is old_style_init do super(3) end class B3 super A - #alt2#init do super(true) + #alt2#init is old_style_init do super(true) end class B4 super A - #alt3#init do end + #alt3#init is old_style_init do end end class C1