diff options
author | Eric Huss <eric@huss.org> | 2018-07-27 11:49:30 -0700 |
---|---|---|
committer | Eric Huss <eric@huss.org> | 2018-07-27 11:49:30 -0700 |
commit | d6f383d20c2dbefd9ece0834b05310dfae4e2a88 (patch) | |
tree | 98529f0dbc9c75e795e720dd37945b1e189bf450 /test-suite/tests | |
parent | 2b6e286fb6244690a6572ebde4e139cbf7a52053 (diff) | |
download | milf-rs-d6f383d20c2dbefd9ece0834b05310dfae4e2a88.tar.gz milf-rs-d6f383d20c2dbefd9ece0834b05310dfae4e2a88.zip |
Don't allow intermixing inline tables and dotted key tables.
Diffstat (limited to 'test-suite/tests')
-rw-r--r-- | test-suite/tests/valid/dotted-keys.json | 10 | ||||
-rw-r--r-- | test-suite/tests/valid/dotted-keys.toml | 4 |
2 files changed, 1 insertions, 13 deletions
diff --git a/test-suite/tests/valid/dotted-keys.json b/test-suite/tests/valid/dotted-keys.json index e32079a..cf9dd04 100644 --- a/test-suite/tests/valid/dotted-keys.json +++ b/test-suite/tests/valid/dotted-keys.json @@ -19,16 +19,6 @@ } }, "in": { - "bar": { - "type": "integer", - "value": "2" - }, - "foo": { - "type": "integer", - "value": "1" - } - }, - "in2": { "type": { "color": { "type": "string", diff --git a/test-suite/tests/valid/dotted-keys.toml b/test-suite/tests/valid/dotted-keys.toml index 27dbd32..234d64c 100644 --- a/test-suite/tests/valid/dotted-keys.toml +++ b/test-suite/tests/valid/dotted-keys.toml @@ -3,7 +3,5 @@ a.b = 123 [table] a.b.c = 1 a . b . d = 2 -in = {foo = 1} -in.bar = 2 -in2 = { type.name = "cat", type.color = "blue" } +in = { type.name = "cat", type.color = "blue" } |