changeset 456:5229605d509a

Removed wrong test assertion
author carandraug
date Mon, 25 Apr 2011 20:04:11 +0000
parents af2072711ff1
children f6cebe09d9d2
files inst/dilate.m
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/inst/dilate.m
+++ b/inst/dilate.m
@@ -85,5 +85,6 @@
 
 %!assert(dilate(eye(3),[1])==eye(3));                     # using [1] as a mask returns the same value
 %!assert(dilate(eye(3),[1,0,0])==[0,0,0;1,0,0;0,1,0]);    # check if it works with non-symmetric SE
-%!assert(dilate(eye(3),[1,0,0,0])==[[0;0],eye(2);0,0,0]); # test if center is correctly calculated on even masks
+## TODO the next assertion is commented since we do not know how the right answer for the calculation
+%!##assert(dilate(eye(3),[1,0,0,0])==XXX); # test if center is correctly calculated on even masks