summaryrefslogtreecommitdiffstats
path: root/util/t/uriparse/parse-url
diff options
context:
space:
mode:
Diffstat (limited to 'util/t/uriparse/parse-url')
-rwxr-xr-xutil/t/uriparse/parse-url2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/t/uriparse/parse-url b/util/t/uriparse/parse-url
index b0c926ca..cf6f53fd 100755
--- a/util/t/uriparse/parse-url
+++ b/util/t/uriparse/parse-url
@@ -5,7 +5,7 @@ trap "/bin/rm -f $tempfile" EXIT INT
uriparse "http://user:pass@domain.tld/path" > $tempfile
. $tempfile
-[ $HOSTN == "domain.tld" ] && \
+[ "$HOSTN" == "domain.tld" ] && \
[ $USERNAME == "user" ] && \
[ $PASSWORD == "pass" ] && \
[ $URIPATH == "/path" ]