diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/quoted-printable.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/quoted-printable.scm b/tests/quoted-printable.scm index cc1b957..a0f0369 100755 --- a/tests/quoted-printable.scm +++ b/tests/quoted-printable.scm @@ -18,9 +18,9 @@ ;;; <http://www.gnu.org/licenses/>. (use-modules (email quoted-printable) - (ice-9 iconv) - (srfi srfi-1) - (srfi srfi-64)) + (ice-9 iconv) + (srfi srfi-1) + (srfi srfi-64)) (test-begin "quoted-printable") @@ -44,10 +44,10 @@ abriquent pour te la vendre une =C3=A2me vulgaire.") (test-assert "quoted-printable wikipedia example: encoded output should not be more than 76 columns wide" (every (lambda (line) - (<= (string-length line) 76)) - (string-split (quoted-printable-encode - (string->bytevector decoded-text charset)) - #\newline)))) + (<= (string-length line) 76)) + (string-split (quoted-printable-encode + (string->bytevector decoded-text charset)) + #\newline)))) (test-equal "q-encoding wikipedia example" (bytevector->string |