diff options
author | makefu <github@syntax-fehler.de> | 2013-09-03 01:25:00 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2013-09-03 01:25:00 +0200 |
commit | 991591bebcc7a4553790dc57a009a13d69f38eed (patch) | |
tree | 3efcdea1f19bf28d5ab29f80307cb23208418f08 /util/t/uriparse/parse-retard-uri | |
parent | bd6b4bd957aba79669352b71be30b1a80adcf862 (diff) |
uriparse-test is now posix compliant
Diffstat (limited to 'util/t/uriparse/parse-retard-uri')
-rwxr-xr-x | util/t/uriparse/parse-retard-uri | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/t/uriparse/parse-retard-uri b/util/t/uriparse/parse-retard-uri index 0c149148..76feac41 100755 --- a/util/t/uriparse/parse-retard-uri +++ b/util/t/uriparse/parse-retard-uri @@ -5,9 +5,9 @@ trap "/bin/rm -f $tempfile" EXIT INT uriparse "http://'lolwut:\"khan@domain.tld/'''" > $tempfile . $tempfile -[ "$HOSTN" == "domain.tld" ] && \ - [ "$USERNAME" == "'lolwut" ] && \ - [ "$PASSWORD" == '"khan' ] && \ - [ "$URIPATH" == "/'''" ] +[ "$HOSTN" = "domain.tld" ] && \ + [ "$USERNAME" = "'lolwut" ] && \ + [ "$PASSWORD" = '"khan' ] && \ + [ "$URIPATH" = "/'''" ] |