diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-01-13 22:42:49 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-01-13 22:42:49 +0100 |
commit | 23862011c3d02814181399765a024c7fa3fadd97 (patch) | |
tree | 67e12fda2b1a16ceb182328808f17eed4224abcc /tests | |
parent | e28d2cdd753f5c224853f3d9ffe63f848709b41a (diff) |
tests: Fix JSON syntax error in 'crate.scm'.
This issue is caught with Guile-JSON 4.4.1, but not by 4.3.2.
* tests/crate.scm (test-root-dependencies): Add missing comma.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/crate.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/crate.scm b/tests/crate.scm index bb7032c344..b6c3a7ee2e 100644 --- a/tests/crate.scm +++ b/tests/crate.scm @@ -148,7 +148,7 @@ \"crate_id\": \"intermediate-b\", \"kind\": \"normal\", \"req\": \"^1.0.0\" - } + }, { \"crate_id\": \"leaf-alice\", \"kind\": \"normal\", |