From fc38e26d74050f9773e7944ccc009516ea0dab55 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Thu, 18 Dec 2003 01:07:09 +0000 Subject: [PATCH] Fix tests --- tests/scripts/test020-proxycache | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/scripts/test020-proxycache b/tests/scripts/test020-proxycache index ddd294e9a4..7ad5bcea2e 100755 --- a/tests/scripts/test020-proxycache +++ b/tests/scripts/test020-proxycache @@ -180,7 +180,7 @@ CACHED=`grep CACHEABLE $LOG2 | awk '{ printf "1" }'` -if test $CACHEABILITY = $CACHED ; then +if test "$CACHEABILITY" = "$CACHED" ; then echo "Successfully verified cacheability" else echo "Error in verifying cacheability" @@ -250,7 +250,7 @@ ANSWERED=`grep ANSWERABLE $LOG2 | awk '{ test $KILLSERVERS != no && kill -HUP $KILLPIDS -if test $ANSWERABILITY = $ANSWERED ; then +if test "$ANSWERABILITY" = "$ANSWERED" ; then echo "Successfully verified answerability" else echo "Error in verifying answerability" -- 2.39.5