summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBruce Korb <bkorb@gnu.org>2012-06-21 11:19:37 -0700
committerBruce Korb <bkorb@gnu.org>2012-06-21 11:19:37 -0700
commite9578acb235cb0613b9fa425c39e2b2b921e297f (patch)
treed48eef0b663dbc690d310045bf35e0656b5af864 /tests
parent6434eb4fc8d1f152ab87e1dd21c60f4bc0d785dd (diff)
downloadgnulib-e9578acb235cb0613b9fa425c39e2b2b921e297f.tar.gz
testing: fix typo in here doc
* tests/test-parse-duration.sh: fix mal-formed here doc.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test-parse-duration.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/test-parse-duration.sh b/tests/test-parse-duration.sh
index 5398c3bf7f..6aeb2253e6 100755
--- a/tests/test-parse-duration.sh
+++ b/tests/test-parse-duration.sh
@@ -50,14 +50,14 @@ trap 'rm -rf "${tmp}"' EXIT
tmpf="${tmp}/tests.txt"
cat > "${tmpf}" <<- _EOF_
- 1 Y 2 M 3 W 4 d 5 h 6 m 7 s
- P 00010225 T 05:06:07
- P 1Y2M3W4D T 5H6M7S
- 1 Y 2 M 25 D 5:6:7
- 1 Y 2 M 25 d 5h 6:7
- 1 Y 2 M 25 d 5h 6m 7
- P 1-2-25 T 5:6:7
- _EOF_
+ 1 Y 2 M 3 W 4 d 5 h 6 m 7 s
+ P 00010225 T 05:06:07
+ P 1Y2M3W4D T 5H6M7S
+ 1 Y 2 M 25 D 5:6:7
+ 1 Y 2 M 25 d 5h 6:7
+ 1 Y 2 M 25 d 5h 6m 7
+ P 1-2-25 T 5:6:7
+ _EOF_
exec 3< "${tmpf}"
while read line <&3