Index: tests/methods.test =================================================================== diff -u -r1d09ffd51baae51ba946eb3b617462d3931a9622 -re7a27ff80df0f9c20be649e1ea1d0bc55f045739 --- tests/methods.test (.../methods.test) (revision 1d09ffd51baae51ba946eb3b617462d3931a9622) +++ tests/methods.test (.../methods.test) (revision e7a27ff80df0f9c20be649e1ea1d0bc55f045739) @@ -413,11 +413,11 @@ :property {a v} # the other methods don't require them as strong :forward b ::o2 bar - :method foo {} {return [self]} + :method foo {} {return [nx::self]} :alias x ::o::foo } nx::Object create o2 { - :public method bar {} {return [self]} + :public method bar {} {return [nx::self]} } # dispatch methods without current object @@ -429,7 +429,7 @@ ? {::o x} "::o" # check, if missing object is still detected ? ::o::x "No current object; x called outside the context of a Next Scripting method" - ? self "No current object; command called outside the context of a Next Scripting method" + ? nx::self "No current object; command called outside the context of a Next Scripting method" }