summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Bex <peter@more-magic.net>2025-08-19 11:27:57 +0200
committerPeter Bex <peter@more-magic.net>2025-08-19 11:27:57 +0200
commitbce60f706af96a473de7801c4b06b8445e40f0d7 (patch)
tree88ae22783370bb38b66d866ac7502af612470b73
parent094253ae6d673fb3f67dae105550c39072d216d7 (diff)
downloadslset-bce60f706af96a473de7801c4b06b8445e40f0d7.tar.gz
Fix duplicated test for slset-contains?HEADmaster
-rw-r--r--tests/run.scm2
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)))))