summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2021-04-29 22:04:10 +0200
committerAndy Wingo <wingo@pobox.com>2021-04-29 22:04:10 +0200
commit3bce50740737531a3590b2bc5c8d3d5d9bd85706 (patch)
tree527be569276751f429a1f207cba7f5aae0af2651
parentee7d18ec41ff8702248258ffbb6544a65c4206fc (diff)
downloadguile-3bce50740737531a3590b2bc5c8d3d5d9bd85706.tar.gz
Fix syntax test
* test-suite/tests/syntax.test ("expressions"): The source location alist is unordered.
-rw-r--r--test-suite/tests/syntax.test2
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)"