diff options
| author | 2021-10-17 12:15:02 +0300 | |
|---|---|---|
| committer | 2021-10-17 12:15:02 +0300 | |
| commit | 152f1654928fb0673de1fec30418712faf3415bf (patch) | |
| tree | 8c12caae8f8faa2912c3d30cbd91003c46022890 | |
| parent | work (diff) | |
fix 'remove' test
| -rw-r--r-- | srfi-225-test.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/srfi-225-test.scm b/srfi-225-test.scm index dd4b8ca..9de1e7b 100644 --- a/srfi-225-test.scm +++ b/srfi-225-test.scm @@ -475,7 +475,7 @@ (equal? value 'b)) dict-original)) (test-equal '((c . d)) (dict->alist dtd d)) - (test-equal 'd (dict-ref dtd dict-original 'c))) + (test-equal 'b (dict-ref dtd dict-original 'a))) (unless mutable? (test-skip 1)) |
