Skip to content
This repository was archived by the owner on May 20, 2024. It is now read-only.

Commit fc5e7cb

Browse files
CodingMarkusCodingMarkus
CodingMarkus
authored and
CodingMarkus
committed
Stop quoting variable names
1 parent 8a7cc0c commit fc5e7cb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/basic/bin/test_perror.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fi
5757
. "$INCLUDE_PSST/basic.inc.sh"
5858

5959
tmpDir="/tmp"
60-
tmpdir_psst "tmpDir"
60+
tmpdir_psst tmpDir
6161

6262
perrorDst="$tmpDir/perror_psst"
6363
perror_psst "This is a very long test sentence, that should be split" \
@@ -79,7 +79,7 @@ fi
7979
. "$INCLUDE_PSST/basic.inc.sh"
8080

8181
tmpDir="/tmp"
82-
tmpdir_psst "tmpDir" || test_fail_psst $LINENO
82+
tmpdir_psst tmpDir || test_fail_psst $LINENO
8383

8484
perrorDst="$tmpDir/perror_psst"
8585
perror_i_psst 5 "This is a very long test sentence, that should be" \

test/basic/bin/test_tmpdir.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ set -e
3131

3232
tmpDir=$(
3333
tmpDir="/tmp"
34-
tmpdir_psst "tmpDir"
34+
tmpdir_psst tmpDir
3535
3636
# Must not be empty
3737
[ -n "$tmpDir" ] || test_fail_psst $LINENO

0 commit comments

Comments
 (0)