From 2055ee92e7e35a8de857d704d0abf71b6740f98f Mon Sep 17 00:00:00 2001 From: Jun-ichi Takimoto Date: Fri, 1 Mar 2019 14:57:55 +0900 Subject: [PATCH] unposted: ztst.zsh: fix a typo --- ChangeLog | 4 ++++ Test/ztst.zsh | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b135bd410..5df6fecf5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2019-03-01 Jun-ichi Takimoto + + * unposted: Test/ztst.zsh: fix a typo + 2019-02-27 dana * 44087: Completion/Unix/Command/_getconf: Complete options, diff --git a/Test/ztst.zsh b/Test/ztst.zsh index d835e0edb..a4c625230 100755 --- a/Test/ztst.zsh +++ b/Test/ztst.zsh @@ -322,7 +322,7 @@ ZTST_diff() { diff_lines2=("${(f@)$(<$argv[-1])}") if (( ${#diff_lines1} != ${#diff_lines2} )); then failed=1 - print -r "Pattern match filead, line mismatch (${#diff_lines1}/${#diff_lines2}):" + print -r "Pattern match failed, line mismatch (${#diff_lines1}/${#diff_lines2}):" else for (( i = 1; i <= ${#diff_lines1}; i++ )); do if [[ ${diff_lines2[i]} != ${~diff_lines1[i]} ]]; then