tests: remove trailing spaces in server responses

Allows us to drop lots of %spc% from test cases making them easier on
the eye.

Closes #19374
This commit is contained in:
Daniel Stenberg 2025-11-05 14:30:41 +01:00
parent a8bef39036
commit c12a1fdd0e
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
26 changed files with 116 additions and 116 deletions

View file

@ -573,10 +573,10 @@ sub protocolsetup {
'PBSZ' => '500 PBSZ not implemented',
'PROT' => '500 PROT not implemented',
'welcome' => join("",
'220- _ _ ____ _ '."\r\n",
'220- ___| | | | _ \| | '."\r\n",
'220- / __| | | | |_) | | '."\r\n",
'220- | (__| |_| | _ {| |___ '."\r\n",
'220- _ _ ____ _'."\r\n",
'220- ___| | | | _ \| |'."\r\n",
'220- / __| | | | |_) | |'."\r\n",
'220- | (__| |_| | _ {| |___'."\r\n",
'220 \___|\___/|_| \_\_____|'."\r\n")
);
}
@ -599,10 +599,10 @@ sub protocolsetup {
);
%displaytext = (
'welcome' => join("",
' _ _ ____ _ '."\r\n",
' ___| | | | _ \| | '."\r\n",
' / __| | | | |_) | | '."\r\n",
' | (__| |_| | _ {| |___ '."\r\n",
' _ _ ____ _'."\r\n",
' ___| | | | _ \| |'."\r\n",
' / __| | | | |_) | |'."\r\n",
' | (__| |_| | _ {| |___'."\r\n",
' \___|\___/|_| \_\_____|'."\r\n",
'+OK curl POP3 server ready to serve '."\r\n")
);
@ -634,10 +634,10 @@ sub protocolsetup {
);
%displaytext = (
'welcome' => join("",
' _ _ ____ _ '."\r\n",
' ___| | | | _ \| | '."\r\n",
' / __| | | | |_) | | '."\r\n",
' | (__| |_| | _ {| |___ '."\r\n",
' _ _ ____ _'."\r\n",
' ___| | | | _ \| |'."\r\n",
' / __| | | | |_) | |'."\r\n",
' | (__| |_| | _ {| |___'."\r\n",
' \___|\___/|_| \_\_____|'."\r\n",
'* OK curl IMAP server ready to serve'."\r\n")
);
@ -658,10 +658,10 @@ sub protocolsetup {
);
%displaytext = (
'welcome' => join("",
'220- _ _ ____ _ '."\r\n",
'220- ___| | | | _ \| | '."\r\n",
'220- / __| | | | |_) | | '."\r\n",
'220- | (__| |_| | _ {| |___ '."\r\n",
'220- _ _ ____ _'."\r\n",
'220- ___| | | | _ \| |'."\r\n",
'220- / __| | | | |_) | |'."\r\n",
'220- | (__| |_| | _ {| |___'."\r\n",
'220 \___|\___/|_| \_\_____|'."\r\n")
);
}