diff --git a/cloud-init.spec b/cloud-init.spec index e56e5163738782a58a0ffbc78a2b63e521827aaf..0cfb23aceba3035655851700614e04a6b740653e 100644 --- a/cloud-init.spec +++ b/cloud-init.spec @@ -1,6 +1,6 @@ Name: cloud-init Version: 21.4 -Release: 9 +Release: 10 Summary: the defacto multi-distribution package that handles early initialization of a cloud instance. License: ASL 2.0 or GPLv3 URL: http://launchpad.net/cloud-init @@ -20,6 +20,7 @@ Patch8: backport-netplan-define-features.NETPLAN_CONFIG_ROOT_READ_ONL.patch Patch9: backport-Fix-the-distro.osfamily-output-problem.patch Patch10:backport-netplan-keep-custom-strict-perms-when-50-cloud-init.patch Patch11:backport-Do-not-change-permissions-of-netrules-target.patch +Patch12:fix-a-small-unitest-error.patch Patch9000: Fix-the-error-level-logs-displayed-for-the-cloud-init-local-service.patch @@ -131,6 +132,9 @@ fi %exclude /usr/share/doc/* %changelog +* Sat Apr 15 2023 bigclouds99 - 21.4-10 +- Fix a unitest error + * Thu Apr 13 2023 shixuantong - 21.4-9 - Don't change permissions of netrules target diff --git a/fix-a-small-unitest-error.patch b/fix-a-small-unitest-error.patch new file mode 100644 index 0000000000000000000000000000000000000000..eded44cd676063c2002eeb238b3d21bd43c93895 --- /dev/null +++ b/fix-a-small-unitest-error.patch @@ -0,0 +1,26 @@ +From ad6a8ee26ae553e9d7a9aff4e348867d32eadcf0 Mon Sep 17 00:00:00 2001 +From: yuelg +Date: Thu, 20 Apr 2023 18:16:21 +0800 +Subject: [PATCH 1/1] fix a small unitest error + +Signed-off-by: yuelg +--- + tests/unittests/test_templating.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/tests/unittests/test_templating.py b/tests/unittests/test_templating.py +index cba0983..116a647 100644 +--- a/tests/unittests/test_templating.py ++++ b/tests/unittests/test_templating.py +@@ -58,7 +58,7 @@ class TestTemplates(test_helpers.CiTestCase): + blob = "blahblah $blah" + (template_type, _renderer, _contents) = templater.detect_template(blob) + self.assertIn("cheetah", template_type) +- self.assertEqual(blob, contents) ++ self.assertEqual(blob, _contents) + + blob = '##template:something-new' + self.assertRaises(ValueError, templater.detect_template, blob) +-- +2.33.0 +