summaryrefslogtreecommitdiff
path: root/tests/integration_tests/conftest.py
diff options
context:
space:
mode:
authorJames Falcon <TheRealFalcon@users.noreply.github.com>2020-11-19 11:54:35 -0600
committerGitHub <noreply@github.com>2020-11-19 12:54:35 -0500
commit9707a08a82161cd4129f6cdd10978cde50bea747 (patch)
tree7ace18165737d19e48eee144d23f36eb9333fe9b /tests/integration_tests/conftest.py
parentbfaee8cc9b8fd23dbc118ae548fc2ca695a0d707 (diff)
downloadvyos-cloud-init-9707a08a82161cd4129f6cdd10978cde50bea747.tar.gz
vyos-cloud-init-9707a08a82161cd4129f6cdd10978cde50bea747.zip
Make mount in place for tests work (#667)
IMAGE_SOURCE = 'IN_PLACE' wasn't working previously. Replaced LXD launch with an init, then mount, then start.
Diffstat (limited to 'tests/integration_tests/conftest.py')
-rw-r--r--tests/integration_tests/conftest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration_tests/conftest.py b/tests/integration_tests/conftest.py
index eacb2ae2..e31a9192 100644
--- a/tests/integration_tests/conftest.py
+++ b/tests/integration_tests/conftest.py
@@ -81,7 +81,7 @@ def setup_image(session_cloud):
if session_cloud.datasource != 'lxd_container':
raise ValueError(
'IN_PLACE as CLOUD_INIT_SOURCE only works for LXD')
- # The mount needs to happen after the instance is launched, so
+ # The mount needs to happen after the instance is created, so
# no further action needed here
elif integration_settings.CLOUD_INIT_SOURCE == 'PROPOSED':
client = session_cloud.launch()