tests: remove remaining old-style attributes declarations
[nit.git] / tests / error_spe_attr.nit
index e589ec7..5570921 100644 (file)
@@ -15,9 +15,9 @@
 # limitations under the License.
 
 class A
-       var _a: Int = 1
+       var a: Int = 1
 end
 class B
        super A
-       redef var _a: Object = 2
+       redef var a: Object = 2
 end