mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
tests: Fix malformed JSON.
Guile-JSON 4.3.2 would parse in spite of these typos, but 4.4.1 is stricter. * tests/swh.scm (%directory-entries): Add missing comma. * tests/cve-sample.json: Likewise.
This commit is contained in:
parent
5ecc0b17f2
commit
9608f4003d
2 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@
|
||||||
"vulnerable" : true,
|
"vulnerable" : true,
|
||||||
"cpe23Uri" : "cpe:2.3:o:juniper:junos:16.1:*:*:*:*:*:*:*"
|
"cpe23Uri" : "cpe:2.3:o:juniper:junos:16.1:*:*:*:*:*:*:*"
|
||||||
} ]
|
} ]
|
||||||
} {
|
}, {
|
||||||
"operator" : "OR",
|
"operator" : "OR",
|
||||||
"cpe_match" : [ {
|
"cpe_match" : [ {
|
||||||
"vulnerable" : true,
|
"vulnerable" : true,
|
||||||
|
|
|
@ -33,7 +33,7 @@ (define %directory-entries
|
||||||
"[ { \"name\": \"one\",
|
"[ { \"name\": \"one\",
|
||||||
\"type\": \"regular\",
|
\"type\": \"regular\",
|
||||||
\"length\": 123,
|
\"length\": 123,
|
||||||
\"dir_id\": 1 }
|
\"dir_id\": 1 },
|
||||||
{ \"name\": \"two\",
|
{ \"name\": \"two\",
|
||||||
\"type\": \"regular\",
|
\"type\": \"regular\",
|
||||||
\"length\": 456,
|
\"length\": 456,
|
||||||
|
|
Loading…
Reference in a new issue