diff options
author | Andy Wingo <wingo@pobox.com> | 2021-04-29 22:04:10 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2021-04-29 22:04:10 +0200 |
commit | 3bce50740737531a3590b2bc5c8d3d5d9bd85706 (patch) | |
tree | 527be569276751f429a1f207cba7f5aae0af2651 /test-suite | |
parent | ee7d18ec41ff8702248258ffbb6544a65c4206fc (diff) | |
download | guile-3bce50740737531a3590b2bc5c8d3d5d9bd85706.tar.gz |
Fix syntax test
* test-suite/tests/syntax.test ("expressions"): The source location
alist is unordered.
Diffstat (limited to 'test-suite')
-rw-r--r-- | test-suite/tests/syntax.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/tests/syntax.test b/test-suite/tests/syntax.test index c60a453aa..a2999ac43 100644 --- a/test-suite/tests/syntax.test +++ b/test-suite/tests/syntax.test @@ -113,7 +113,7 @@ (with-test-prefix "Bad argument list" (pass-if-equal "syntax-error location" - '((line . 1) (column . 2) (filename . "example.scm")) + '((filename . "example.scm") (line . 1) (column . 2)) (catch 'syntax-error (lambda () (eval (call-with-input-string "\n (let foo bar)" |