summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Contreras <alberto.contreras@canonical.com>2023-03-01 15:55:14 +0100
committerGitHub <noreply@github.com>2023-03-01 08:55:14 -0600
commit5d1d2544ab1f070ab9810779ba914298d44c06b2 (patch)
treed4c81da4142cbe9f570d0409f487958f6270a891
parentb2220798c0852cae2ee19f4d3632f1346a7adb6f (diff)
downloadcloud-init-git-5d1d2544ab1f070ab9810779ba914298d44c06b2.tar.gz
tests: fix test_schema (#2042)
-rw-r--r--tests/integration_tests/cmd/test_schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration_tests/cmd/test_schema.py b/tests/integration_tests/cmd/test_schema.py
index 0930309b..fd8c13cf 100644
--- a/tests/integration_tests/cmd/test_schema.py
+++ b/tests/integration_tests/cmd/test_schema.py
@@ -19,7 +19,7 @@ class TestSchemaDeprecations:
def test_clean_log(self, class_client: IntegrationInstance):
log = class_client.read_from_file("/var/log/cloud-init.log")
verify_clean_log(log, ignore_deprecations=True)
- assert "WARNING]: Deprecated cloud-config provided:" in log
+ assert "DEPRECATED]: Deprecated cloud-config provided:" in log
assert "apt_reboot_if_required: Default: ``false``. Deprecated " in log
assert "apt_update: Default: ``false``. Deprecated in version" in log
assert "apt_upgrade: Default: ``false``. Deprecated in version" in log