X-Git-Url: http://nitlanguage.org diff --git a/tests/test_pretty/test_attr2.nit b/tests/test_pretty/test_attr2.nit index 5b727f7..08a4d49 100644 --- a/tests/test_pretty/test_attr2.nit +++ b/tests/test_pretty/test_attr2.nit @@ -13,10 +13,10 @@ # limitations under the License. class Foo - var _a: Int - private var _b: nullable Int - protected var _c = 10 - var _d: Int = 10 + var a: Int + private var b: nullable Int + protected var c = 10 + var d: Int = 10 end var foo = new Foo(1, 2)