diff options
author | Munyoki Kilyungi | 2023-06-21 13:44:18 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2023-06-21 13:44:18 +0300 |
commit | fea53387be994fb94814f08bb4fd6e0660005839 (patch) | |
tree | d0364539ef608f7b42450f531397901f9019abf5 | |
parent | 3beb94e591b2d739bd50f1ceb831bb19784a5a2e (diff) | |
download | gn-transform-databases-fea53387be994fb94814f08bb4fd6e0660005839.tar.gz |
Fix failing tests
* dump/special-forms.scm: Export map-alist.
* tests.scm: Import strings, and special-forms.
-rw-r--r-- | dump/special-forms.scm | 1 | ||||
-rw-r--r-- | tests.scm | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/dump/special-forms.scm b/dump/special-forms.scm index 9b295ba..f9dca91 100644 --- a/dump/special-forms.scm +++ b/dump/special-forms.scm @@ -17,6 +17,7 @@ dump-id syntax-let blank-node + map-alist define-dump)) (define (key->assoc-ref alist x) @@ -2,7 +2,8 @@ (ice-9 match) (dump sql) (dump string-similarity) - (dump utils)) + (dump strings) + (dump special-forms)) (test-begin "sql") |