From 9afde2ec96280068e5c458ed53f2feb464df5986 Mon Sep 17 00:00:00 2001 From: hamistao Date: Mon, 10 Jun 2024 18:16:10 -0300 Subject: [PATCH] integration/test_storage: Change API missing error message Signed-off-by: hamistao --- integration/test_storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/test_storage.py b/integration/test_storage.py index d47a3ce1..863fc190 100644 --- a/integration/test_storage.py +++ b/integration/test_storage.py @@ -23,7 +23,7 @@ def setUp(self): super().setUp() if not self.client.has_api_extension("storage"): - self.skipTest("Required LXD API extension not available!") + self.skipTest("Required 'storage' LXD API extension not available!") class TestStoragePools(StorageTestCase):