diff options
author | Peter Bex <peter@more-magic.net> | 2025-08-19 11:27:57 +0200 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2025-08-19 11:27:57 +0200 |
commit | bce60f706af96a473de7801c4b06b8445e40f0d7 (patch) | |
tree | 88ae22783370bb38b66d866ac7502af612470b73 | |
parent | 094253ae6d673fb3f67dae105550c39072d216d7 (diff) | |
download | slset-bce60f706af96a473de7801c4b06b8445e40f0d7.tar.gz |
-rw-r--r-- | tests/run.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run.scm b/tests/run.scm index 8ec1a5a..ab09e46 100644 --- a/tests/run.scm +++ b/tests/run.scm @@ -73,7 +73,7 @@ (test-group "slset-contains?" (test-group "some examples" (test #t (slset-contains? '(a b c d a c e) 'a)) - (test #t (slset-contains? '(a b c d a c e) 'a)) + (test #t (slset-contains? '(a b c d a c e) 'd)) (test #f (slset-contains? '(a b c d a c e) 'i))) (test-group "all symbols used here still clean" (test-assert (clean? '(a b c d e i))))) |