mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 02:54:58 -06:00
tests: Explicitly create containers in test_qom_partial_path()
Drop one use of container_get(), instead switch to the explicit function to create a container. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Peter Xu <peterx@redhat.com> Message-ID: <20241121192202.4155849-5-peterx@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
ff18687db3
commit
d95f60593d
1 changed files with 1 additions and 1 deletions
|
@ -610,7 +610,7 @@ static void test_dummy_delchild(void)
|
|||
static void test_qom_partial_path(void)
|
||||
{
|
||||
Object *root = object_get_objects_root();
|
||||
Object *cont1 = container_get(root, "/cont1");
|
||||
Object *cont1 = object_property_add_new_container(root, "cont1");
|
||||
Object *obj1 = object_new(TYPE_DUMMY);
|
||||
Object *obj2a = object_new(TYPE_DUMMY);
|
||||
Object *obj2b = object_new(TYPE_DUMMY);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue