From ca25f3bf64fbb9814318b00b73b45d9f4044c291 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Thu, 4 May 2023 16:58:40 +0200 Subject: [PATCH] src/tests: Fix container creation errors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- src/tests/createtest.c | 2 +- src/tests/get_item.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/createtest.c b/src/tests/createtest.c index f7ce78ba9e..5719d55a66 100644 --- a/src/tests/createtest.c +++ b/src/tests/createtest.c @@ -56,7 +56,7 @@ int main(int argc, char *argv[]) c->set_config_item(c, "lxc.net.0.flags", "up"); if (!c->createl(c, "busybox", NULL, NULL, 0, NULL)) { - fprintf(stderr, "%d: failed to create a trusty container\n", __LINE__); + fprintf(stderr, "%d: failed to create a container\n", __LINE__); goto out; } diff --git a/src/tests/get_item.c b/src/tests/get_item.c index 8ad53c4372..a3ac188f53 100644 --- a/src/tests/get_item.c +++ b/src/tests/get_item.c @@ -509,7 +509,7 @@ int main(int argc, char *argv[]) } if (!c->createl(c, "busybox", NULL, NULL, 0, NULL)) { - fprintf(stderr, "%d: failed to create a trusty container\n", __LINE__); + fprintf(stderr, "%d: failed to create a container\n", __LINE__); goto out; } lxc_container_put(c);