general: Fix indentation.

This commit is contained in:
Dylan Araps
2019-06-08 17:42:48 +03:00
parent 2be9404b63
commit 62bbe5adb9

View File

@@ -54,13 +54,13 @@ test_rstrip() {
}
test_urlencode() {
result="$(urlencode "https://github.com/dylanaraps/pure-bash-bible")"
assert_equals "$result" "https%3A%2F%2Fgithub.com%2Fdylanaraps%2Fpure-bash-bible"
result="$(urlencode "https://github.com/dylanaraps/pure-bash-bible")"
assert_equals "$result" "https%3A%2F%2Fgithub.com%2Fdylanaraps%2Fpure-bash-bible"
}
test_urldecode() {
result="$(urldecode "https%3A%2F%2Fgithub.com%2Fdylanaraps%2Fpure-bash-bible")"
assert_equals "$result" "https://github.com/dylanaraps/pure-bash-bible"
result="$(urldecode "https%3A%2F%2Fgithub.com%2Fdylanaraps%2Fpure-bash-bible")"
assert_equals "$result" "https://github.com/dylanaraps/pure-bash-bible"
}
test_reverse_array() {