Index: tests/methods.test =================================================================== diff -u -r85eec46a5b0658d86d17b0f126851343b241a558 -ra65f2c7d3f02c9da0f878f59fa4dd5fb6008bade --- tests/methods.test (.../methods.test) (revision 85eec46a5b0658d86d17b0f126851343b241a558) +++ tests/methods.test (.../methods.test) (revision a65f2c7d3f02c9da0f878f59fa4dd5fb6008bade) @@ -1571,15 +1571,15 @@ FsFile create f1 f1 lstat / a1 -? {array size a1} 13 +? {expr {[array size a1] > 1}} 1 array unset a1 proc foo {} { FsFile create f2 f2 lstat / a2 array get a2 } -? {dict size [foo]} 13 +? {expr {[dict size [foo]] > 1}} 1 # # Setup 2 (with filter) @@ -1589,9 +1589,9 @@ AbstractFile filters add filterCall f1 lstat / a1 -? {array size a1} 13 +? {expr {[array size a1] > 1}} 1 array unset a1 -? {dict size [foo]} 13 +? {expr {[dict size [foo]] > 1}} 1 # # Setup 3 (with filter and guard) @@ -1601,9 +1601,9 @@ AbstractFile filters guard filterCall { [current calledproc] eq "lstat" } f1 lstat / a1 -? {array size a1} 13 +? {expr {[array size a1] > 1}} 1 array unset a1 -? {dict size [foo]} 13 +? {expr {[dict size [foo]] > 1}} 1 AbstractFile filters delete filterCall