public inbox for kawa@sourceware.org
 help / color / mirror / Atom feed
* Missing else-clause in strings-test.scm (trivial patch)
@ 2017-06-14 14:42 Sudarshan S Chawathe
  0 siblings, 0 replies; only message in thread
From: Sudarshan S Chawathe @ 2017-06-14 14:42 UTC (permalink / raw)
  To: kawa

[-- Attachment #1: Type: text/plain, Size: 193 bytes --]


The cond-expand near the end of testsuite/strings-test.scm is missing an
else clause.  It's probably fine as is but the else clause may be worth
adding just for consistency.

Regards,

-chaw


[-- Attachment #2: strings-test-cond-expand-else.patch --]
[-- Type: text/x-diff, Size: 535 bytes --]

diff --git a/testsuite/strings-test.scm b/testsuite/strings-test.scm
index ef655e1..c12e528 100644
--- a/testsuite/strings-test.scm
+++ b/testsuite/strings-test.scm
@@ -2871,8 +2871,8 @@
   (test-equal "c😼b😂a" (reverse-list->string '(#\a #\😂 #\b #\😼 #\c)))
 
   (test-equal "y😂a😼xy" (xsubstring "a😼xy😂" 3 9))
-  (test-equal "y😂a😼" (xsubstring "a😼xy😂" -2 2))
-))
+  (test-equal "y😂a😼" (xsubstring "a😼xy😂" -2 2)))
 ;; end section with UTF-8 literals
+ (else))
 
 (test-end)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-06-14 14:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-14 14:42 Missing else-clause in strings-test.scm (trivial patch) Sudarshan S Chawathe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).