summaryrefslogtreecommitdiffstats
path: root/util/t/uriparse/parse-url
diff options
context:
space:
mode:
authormakefu <root@pigstarter.de>2013-09-16 12:53:23 +0200
committermakefu <root@pigstarter.de>2013-09-16 12:53:23 +0200
commit4823eb420b0fa7b41493ca0c57a042b2ce1ef294 (patch)
treed47474f320c5c750293f761013dea6f757036ed4 /util/t/uriparse/parse-url
parentd064ae45514232825891357b3b31c80ae6f698e8 (diff)
parentc39c60f74a8d6be286648e2bdb264c9f93eaddef (diff)
Merge branch 'master' of https://github.com/krebscode/painload
Diffstat (limited to 'util/t/uriparse/parse-url')
-rwxr-xr-xutil/t/uriparse/parse-url8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/t/uriparse/parse-url b/util/t/uriparse/parse-url
index cf6f53fd..2ccf39c9 100755
--- a/util/t/uriparse/parse-url
+++ b/util/t/uriparse/parse-url
@@ -5,9 +5,9 @@ trap "/bin/rm -f $tempfile" EXIT INT
uriparse "http://user:pass@domain.tld/path" > $tempfile
. $tempfile
-[ "$HOSTN" == "domain.tld" ] && \
- [ $USERNAME == "user" ] && \
- [ $PASSWORD == "pass" ] && \
- [ $URIPATH == "/path" ]
+[ "$HOSTN" = "domain.tld" ] && \
+ [ $USERNAME = "user" ] && \
+ [ $PASSWORD = "pass" ] && \
+ [ $URIPATH = "/path" ]