Modify test database to avoid break when json5 merged

No other changes will be needed when merging the json5 branch into
Base-7.0, these changes let testpvalink pass with and without it.
This commit is contained in:
Andrew Johnson
2020-08-08 23:51:01 -05:00
parent c66f224602
commit 740aad6712

View File

@ -8,7 +8,7 @@ record(ai, "target:ai") {
}
record(int64in, "src:i1") {
field(INP, {pva:"target:i"})
field(INP, {"pva":"target:i"})
}
# used by testPut()
@ -17,5 +17,5 @@ record(int64in, "target:i2") {
}
record(int64out, "src:o2") {
field(OUT, {pva:"target:i2"})
field(OUT, {"pva":"target:i2"})
}