diff options
author | EuAndreh <eu@euandre.org> | 2021-06-22 18:33:21 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-22 18:33:21 -0300 |
commit | 4b38e66258a4167f2fc326a5c19e5ff315cc9686 (patch) | |
tree | 828744df15b2406049d5967b1ed20c2f1717b823 | |
parent | tests/remotes.sh: Conditionally set user.{email,name} to work on new env like CI (diff) | |
download | git-permalink-4b38e66258a4167f2fc326a5c19e5ff315cc9686.tar.gz git-permalink-4b38e66258a4167f2fc326a5c19e5ff315cc9686.tar.xz |
tests/cli-opts.sh: Stop testing behaviour of "locale" command
-rwxr-xr-x | tests/cli-opts.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/cli-opts.sh b/tests/cli-opts.sh index dae3fbd..cda6d41 100755 --- a/tests/cli-opts.sh +++ b/tests/cli-opts.sh @@ -62,15 +62,6 @@ test_langs() { assert_fgrep_stdout 'Uso' assert_fgrep_stdout 'Opções' - OUT="$(mktemp)" - ERR="$(mktemp)" - LANG=C LC_MESSAGES=pt sh git-permalink -h 1>"$OUT" 2>"$ERR" - STATUS=$? - assert_status 0 - assert_empty_stderr - assert_fgrep_stdout 'Uso' - assert_fgrep_stdout 'Opções' - test_ok } |