Index: tests/parameters.test =================================================================== diff -u -r2cca652c92b1933dd1b27f002a4c4886730f34f1 -r1f666096846419774da5ef6c42150ae1388ba3cd --- tests/parameters.test (.../parameters.test) (revision 2cca652c92b1933dd1b27f002a4c4886730f34f1) +++ tests/parameters.test (.../parameters.test) (revision 1f666096846419774da5ef6c42150ae1388ba3cd) @@ -294,7 +294,7 @@ ? {c1 info lookup slots -source application} "::C::slot::a ::C::slot::b ::C::slot::c" - c1 configure -class nx::Object + nsf::relation c1 class nx::Object ? {c1 info lookup slots -source application} "" @@ -378,7 +378,7 @@ ? {D create d1} \ {required argument 'd' is missing, should be: - ::d1 configure -d ?-a value? ?-b boolean? ?-c value? ?-volatile? ?-properties value? ?-noinit? ?-mixin mixinreg ...? ?-class class? ?-filter filterreg ...? ?__initcmd?} + ::d1 __configure -d ?-a value? ?-b boolean? ?-c value? ?-volatile? ?-properties value? ?-noinit? ?-mixin mixinreg ...? ?-class class? ?-filter filterreg ...? ?__initcmd?} ? {D create d2 -d x -b a} \ {expected boolean but got "a" for parameter "-b"} \ @@ -940,13 +940,13 @@ # nx::Test case parameter-alias-default { - ::nsf::method::require nx::Object configure + ::nsf::method::require nx::Object __configure nx::Class create C { :property {a ""} :property {b 1} :method init {} { - :configure -b 1 + :__configure -b 1 } :create c1 :create c2 -a 0 @@ -1610,7 +1610,7 @@ ? {c1 a 2} 2 ? {c1 a} 2 # call configure ... - c1 configure + c1 __configure # ... and check, it did not reset the value to the default ? {c1 a} 2 } @@ -1853,7 +1853,7 @@ # ::nsf::invalidateobjectparameter C - c1 configure -a1 x + c1 __configure -a1 x ? {c1 info precedence} "::M ::C ::nx::Object"