aboutsummaryrefslogtreecommitdiff
path: root/tests/cli-opts.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cli-opts.sh')
-rwxr-xr-xtests/cli-opts.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/cli-opts.sh b/tests/cli-opts.sh
index bbec933..35f2347 100755
--- a/tests/cli-opts.sh
+++ b/tests/cli-opts.sh
@@ -10,7 +10,7 @@ test_help_flags() {
OUT="$(mktemp)"
ERR="$(mktemp)"
- ./git-permalink -h 1>"$OUT" 2>"$ERR"
+ LANG=en_US.UTF-8 ./git-permalink -h 1>"$OUT" 2>"$ERR"
STATUS=$?
assert_status 0
assert_empty_stderr
@@ -19,7 +19,7 @@ test_help_flags() {
OUT="$(mktemp)"
ERR="$(mktemp)"
- ./git-permalink --help 1>"$OUT" 2>"$ERR"
+ LANG=en_US.UTF-8 ./git-permalink --help 1>"$OUT" 2>"$ERR"
STATUS=$?
assert_status 0
assert_empty_stderr
@@ -29,7 +29,7 @@ test_help_flags() {
OUT="$(mktemp)"
ERR="$(mktemp)"
- ./git-permalink --something somethign -h 1>"$OUT" 2>"$ERR"
+ LANG=en_US.UTF-8 ./git-permalink --something somethign -h 1>"$OUT" 2>"$ERR"
STATUS=$?
assert_status 0
assert_empty_stderr
@@ -39,7 +39,7 @@ test_help_flags() {
OUT="$(mktemp)"
ERR="$(mktemp)"
- ./git-permalink --help more things 1>"$OUT" 2>"$ERR"
+ LANG=en_US.UTF-8 ./git-permalink --help more things 1>"$OUT" 2>"$ERR"
STATUS=$?
assert_status 0
assert_empty_stderr