From 78d503cc6f80efd17ff72168654017aef938e6cd Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Mon, 24 May 2021 17:14:31 +0200 Subject: [PATCH] :wrench: Update tests --- tests/error/private.gw | 2 +- tests/error/private_func_call_out.gw | 2 +- tests/error/private_func_nocall_out.gw | 2 +- tests/error/private_other.gw | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/error/private.gw b/tests/error/private.gw index 864fed9b..0329e519 100644 --- a/tests/error/private.gw +++ b/tests/error/private.gw @@ -1,4 +1,4 @@ -#! [contains] can't access private +#! [contains] invalid variable access class C { var private int i; } var C c; diff --git a/tests/error/private_func_call_out.gw b/tests/error/private_func_call_out.gw index d616d085..90cb2def 100644 --- a/tests/error/private_func_call_out.gw +++ b/tests/error/private_func_call_out.gw @@ -1,4 +1,4 @@ -#! [contains] can't access private +#! [contains] invalid variable access class C { fun private void test(){} } diff --git a/tests/error/private_func_nocall_out.gw b/tests/error/private_func_nocall_out.gw index c28529cb..3e28c9f6 100644 --- a/tests/error/private_func_nocall_out.gw +++ b/tests/error/private_func_nocall_out.gw @@ -1,4 +1,4 @@ -#! [contains] can't access private +#! [contains] invalid variable access class C { fun private void test(){} } diff --git a/tests/error/private_other.gw b/tests/error/private_other.gw index 34cec0f8..5b73ca47 100644 --- a/tests/error/private_other.gw +++ b/tests/error/private_other.gw @@ -1,4 +1,4 @@ -#! [contains] can't access private +#! [contains] invalid variable access class C { var private int i; } class D { -- 2.43.0