This is an automated email from the git hooks/post-receive script.
wingo pushed a commit to branch master
in repository guile.
The following commit(s) were added to refs/heads/master by this push:
new 3bce507 Fix syntax test
3bce507 is described below
commit 3bce50740737531a3590b2bc5c8d3d5d9bd85706
Author: Andy Wingo <[email protected]>
AuthorDate: Thu Apr 29 22:04:10 2021 +0200
Fix syntax test
* test-suite/tests/syntax.test ("expressions"): The source location
alist is unordered.
---
test-suite/tests/syntax.test | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test-suite/tests/syntax.test b/test-suite/tests/syntax.test
index c60a453..a2999ac 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)"