diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-02-20 18:24:54 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-02-20 18:24:54 +0000 |
commit | 375652641509b75e93a284deea44f6f1be13e7b3 (patch) | |
tree | d00822fc1ac8a5605edbd6f9e7701076b9fbd4dc /test/fixtures/json/bad | |
parent | Add support for smooth faces (diff) | |
download | ilt-375652641509b75e93a284deea44f6f1be13e7b3.tar.bz2 ilt-375652641509b75e93a284deea44f6f1be13e7b3.tar.xz ilt-375652641509b75e93a284deea44f6f1be13e7b3.zip |
Swap @ prefix for p. prefix for special value names
Diffstat (limited to 'test/fixtures/json/bad')
-rw-r--r-- | test/fixtures/json/bad/empty_abs.json | 2 | ||||
-rw-r--r-- | test/fixtures/json/bad/implicit_abs.json | 2 | ||||
-rw-r--r-- | test/fixtures/json/bad/late_type.json | 2 | ||||
-rw-r--r-- | test/fixtures/json/bad/wrong_type.json | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/test/fixtures/json/bad/empty_abs.json b/test/fixtures/json/bad/empty_abs.json index 7d22001..5cc3598 100644 --- a/test/fixtures/json/bad/empty_abs.json +++ b/test/fixtures/json/bad/empty_abs.json @@ -1,5 +1,5 @@ { - "@typeid": "TestObject", + "p.typeid": "TestObject", "flt": 1, "aptr": {}, "str": "after" diff --git a/test/fixtures/json/bad/implicit_abs.json b/test/fixtures/json/bad/implicit_abs.json index 573b323..bf81ee4 100644 --- a/test/fixtures/json/bad/implicit_abs.json +++ b/test/fixtures/json/bad/implicit_abs.json @@ -1,5 +1,5 @@ { - "@typeid": "TestObject", + "p.typeid": "TestObject", "flt": 1, "aptr": { "str": "trigger" diff --git a/test/fixtures/json/bad/late_type.json b/test/fixtures/json/bad/late_type.json index 171575a..d1d6f6c 100644 --- a/test/fixtures/json/bad/late_type.json +++ b/test/fixtures/json/bad/late_type.json @@ -1,4 +1,4 @@ { "str": "trigger", - "@typeid": "doesn't matter" + "p.typeid": "doesn't matter" } diff --git a/test/fixtures/json/bad/wrong_type.json b/test/fixtures/json/bad/wrong_type.json index 777d791..4f19033 100644 --- a/test/fixtures/json/bad/wrong_type.json +++ b/test/fixtures/json/bad/wrong_type.json @@ -1,5 +1,5 @@ { "ptr": { - "@typeid": "SubObject" + "p.typeid": "SubObject" } } |