summaryrefslogtreecommitdiff
path: root/tests/integration_tests/test_kernel_commandline_match.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration_tests/test_kernel_commandline_match.py')
-rw-r--r--tests/integration_tests/test_kernel_commandline_match.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/integration_tests/test_kernel_commandline_match.py b/tests/integration_tests/test_kernel_commandline_match.py
index cbbce9ca..f7238f24 100644
--- a/tests/integration_tests/test_kernel_commandline_match.py
+++ b/tests/integration_tests/test_kernel_commandline_match.py
@@ -49,7 +49,10 @@ def override_kernel_cmdline(ds_str: str, c: IntegrationInstance) -> str:
@pytest.mark.parametrize(
"ds_str, configured",
(
- ("ds=nocloud;s=http://my-url/", "DataSourceNoCloud"),
+ (
+ "ds=nocloud;s=http://my-url/",
+ "DataSourceNoCloud [seed=None][dsmode=net]",
+ ),
("ci.ds=openstack", "DataSourceOpenStack"),
),
)