From 48ec8223dad4b97c5bb3360b9bd8fa0ee7f16f9d Mon Sep 17 00:00:00 2001 From: Quanah Gibson-Mount Date: Tue, 31 Jan 2017 16:17:02 -0800 Subject: [PATCH] Fix comparison error --- tests/data/regressions/its8521/its8521 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/data/regressions/its8521/its8521 b/tests/data/regressions/its8521/its8521 index acb93f69d2..1fd3ca4981 100755 --- a/tests/data/regressions/its8521/its8521 +++ b/tests/data/regressions/its8521/its8521 @@ -265,7 +265,7 @@ $LDIFFILTER < $SLAVEOUT > $SLAVEFLT echo "Comparing retrieved entries from provider and consumer..." $CMP $MASTERFLT $SLAVEFLT > $CMPOUT -if test $? == 0 ; then +if test $? = 0 ; then echo "test failed - provider and consumer databases match" echo "This is a regression of ITS8281" test $KILLSERVERS != no && kill -HUP $KILLPIDS -- 2.39.5