diff options
Diffstat (limited to 'tests/ast.test')
-rw-r--r-- | tests/ast.test | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/ast.test b/tests/ast.test index 596d9d3..8b8db48 100644 --- a/tests/ast.test +++ b/tests/ast.test @@ -18,12 +18,12 @@ ;;; along with this program. If not, see <http://www.gnu.org/licenses/>. (define-module (tests ast) - :use-module (ice-9 match) - :use-module (skribilo ast) - :use-module (skribilo package base) - :use-module (srfi srfi-1) - :use-module (srfi srfi-64) - :use-module (ice-9 match)) + #:use-module (ice-9 match) + #:use-module (skribilo ast) + #:use-module (skribilo package base) + #:use-module (srfi srfi-1) + #:use-module (srfi srfi-64) + #:use-module (ice-9 match)) (define (tree-map proc tree) ;; Map PROC over TREE. |