Index: openacs-4/packages/acs-tcl/tcl/test/ad-proc-test-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-tcl/tcl/test/ad-proc-test-procs.tcl,v diff -u -N -r1.8 -r1.9 --- openacs-4/packages/acs-tcl/tcl/test/ad-proc-test-procs.tcl 10 Jan 2007 21:22:12 -0000 1.8 +++ openacs-4/packages/acs-tcl/tcl/test/ad-proc-test-procs.tcl 8 Dec 2012 17:42:32 -0000 1.9 @@ -23,14 +23,14 @@ } error] ad_proc -callback a_callback { -arg1 arg2 } { this is a test callback } - - set callback_procs [info procs ::callback::a_callback::*] + set callback_procs [info command ::callback::a_callback::*] aa_true "creation of a valid callback contract with '-' body" \ [expr {[lsearch -exact \ $callback_procs \ ::callback::a_callback::contract] >= 0}] ad_proc -callback a_callback_2 { arg1 arg2 } { this is a test callback } {} - set callback_procs [info procs ::callback::a_callback_2::*] + set callback_procs [info commands ::callback::a_callback_2::*] aa_true "creation of a valid callback contract with no body" \ [expr {[lsearch -exact \ $callback_procs \ @@ -50,7 +50,7 @@ this is a test callback implementation } { } - set impl_procs [info procs ::callback::a_callback::impl::*] + set impl_procs [info commands ::callback::a_callback::impl::*] aa_true "creation of a valid callback implementation" \ [expr {[lsearch -exact \ $impl_procs \