aboutsummaryrefslogtreecommitdiff
path: root/tests/qapi-schema/flat-union-base-union.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/qapi-schema/flat-union-base-union.json')
-rw-r--r--tests/qapi-schema/flat-union-base-union.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/qapi-schema/flat-union-base-union.json b/tests/qapi-schema/flat-union-base-union.json
index 0ba6e28d3b..6a8ea687a9 100644
--- a/tests/qapi-schema/flat-union-base-union.json
+++ b/tests/qapi-schema/flat-union-base-union.json
@@ -1,9 +1,9 @@
# we require the base to be a struct
{ 'enum': 'TestEnum',
'data': [ 'value1', 'value2' ] }
-{ 'type': 'TestTypeA',
+{ 'struct': 'TestTypeA',
'data': { 'string': 'str' } }
-{ 'type': 'TestTypeB',
+{ 'struct': 'TestTypeB',
'data': { 'integer': 'int' } }
{ 'union': 'UnionBase',
'data': { 'kind1': 'TestTypeA',