From 9fa390aee696f7c3886bc9146e4051cbbe9593cb Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 2 Sep 2026 12:32:29 +0100 Subject: [PATCH] Fix error in test. --- regress/clear-on-attach.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regress/clear-on-attach.sh b/regress/clear-on-attach.sh index 007a6916c..012064660 100644 --- a/regress/clear-on-attach.sh +++ b/regress/clear-on-attach.sh @@ -88,7 +88,7 @@ escape=$(printf '\033') if ! LC_ALL=C grep -Eq "${escape}\\[[0-9]+S" "$off"; then hex=$(od -An -tx1 -v "$off" | tr -d ' \n') case "$hex" in - *0a0a0a0a0a0a0a0a0a0a0a0a*) ;; + *0a0a0a0a0a0a0a0a0a0a0a*) ;; *) fail "clear-on-attach off did not scroll the old contents away" ;; esac fi