← Back to team overview

cloud-init-dev team mailing list archive

[Merge] ~powersj/cloud-init:fix-integration-snappy into cloud-init:master

 

Joshua Powers has proposed merging ~powersj/cloud-init:fix-integration-snappy into cloud-init:master.

Commit message:
tests: Fix snapd test case for non-started service

Snapd does not start on artful or on the versions in proposed. This changes
the behavior of the test to confirm that snapd is installed, not that it is
started, while the snap team fixes the issue.

LP: #1690880


Requested reviews:
  cloud-init commiters (cloud-init-dev)

For more details, see:
https://code.launchpad.net/~powersj/cloud-init/+git/cloud-init/+merge/324430
-- 
Your team cloud-init commiters is requested to review the proposed merge of ~powersj/cloud-init:fix-integration-snappy into cloud-init:master.
diff --git a/tests/cloud_tests/testcases/modules/snappy.py b/tests/cloud_tests/testcases/modules/snappy.py
index 3e2f592..334d1fc 100644
--- a/tests/cloud_tests/testcases/modules/snappy.py
+++ b/tests/cloud_tests/testcases/modules/snappy.py
@@ -11,8 +11,5 @@ class TestSnappy(base.CloudTestCase):
         """Test snappy version output"""
         out = self.get_data_file('snap_version')
         self.assertIn('snap ', out)
-        self.assertIn('snapd ', out)
-        self.assertIn('series ', out)
-        self.assertIn('ubuntu ', out)
 
 # vi: ts=4 expandtab

Follow ups