diff options
author | Markus Armbruster | 2017-03-03 13:32:39 +0100 |
---|---|---|
committer | Markus Armbruster | 2017-03-05 09:14:19 +0100 |
commit | 048abb7b20c9f822ad9d4b730bade73b3311a47a (patch) | |
tree | f1bdfb69e0ec12f437c130fecd88ece54e365f63 /tests/test-qobject-input-strict.c | |
parent | test-qobject-input-visitor: Use strict visitor (diff) | |
download | qemu-048abb7b20c9f822ad9d4b730bade73b3311a47a.tar.gz qemu-048abb7b20c9f822ad9d4b730bade73b3311a47a.tar.xz qemu-048abb7b20c9f822ad9d4b730bade73b3311a47a.zip |
qapi: Drop unused non-strict qobject input visitor
The split between tests/test-qobject-input-visitor.c and
tests/test-qobject-input-strict.c now makes less sense than ever. The
next commit will take care of that.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <1488544368-30622-20-git-send-email-armbru@redhat.com>
Diffstat (limited to 'tests/test-qobject-input-strict.c')
-rw-r--r-- | tests/test-qobject-input-strict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-qobject-input-strict.c b/tests/test-qobject-input-strict.c index 4087ea3dd3..7d26113013 100644 --- a/tests/test-qobject-input-strict.c +++ b/tests/test-qobject-input-strict.c @@ -53,7 +53,7 @@ static Visitor *validate_test_init_internal(TestInputVisitorData *data, data->obj = qobject_from_jsonv(json_string, ap); g_assert(data->obj); - data->qiv = qobject_input_visitor_new(data->obj, true); + data->qiv = qobject_input_visitor_new(data->obj); g_assert(data->qiv); return data->qiv; } |