diff options
author | EuAndreh <eu@euandre.org> | 2022-08-12 18:17:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-08-12 18:17:54 -0300 |
commit | c5bbc1194fd41aa58f3e230229746303c34ff002 (patch) | |
tree | e3b30a7cf2dd7797f107480f347c01cb8a5e9967 | |
parent | Makefile: Fix "public" target dependencies (diff) | |
download | guile-heredoc-c5bbc1194fd41aa58f3e230229746303c34ff002.tar.gz guile-heredoc-c5bbc1194fd41aa58f3e230229746303c34ff002.tar.xz |
tests/heredoc.scm: Keep max column width at 80
-rw-r--r-- | tests/heredoc.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/heredoc.scm b/tests/heredoc.scm index 931b7a2..b96ca2c 100644 --- a/tests/heredoc.scm +++ b/tests/heredoc.scm @@ -167,7 +167,8 @@ (trim-indentation "\n\nmixed\n indentations\n")) (t:test-equal "\n\n\n \n lines with only spaces\n" - (trim-indentation "\n\n \n \n lines with only spaces\n")) + (trim-indentation + "\n\n \n \n lines with only spaces\n")) (t:test-equal "\n\n mixed spaces\n and tabs" (trim-indentation "\n\n mixed spaces\n and tabs")) |