launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #29936
[Merge] ~lgp171188/lpci:fix-failing-tests-snap-classic-warning into lpci:main
Guruprasad has proposed merging ~lgp171188/lpci:fix-failing-tests-snap-classic-warning into lpci:main.
Commit message:
Fix the test for the validation of wrong values for classic snap installation
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~lgp171188/lpci/+git/lpcraft/+merge/441461
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~lgp171188/lpci:fix-failing-tests-snap-classic-warning into lpci:main.
diff --git a/lpci/commands/tests/test_run.py b/lpci/commands/tests/test_run.py
index 1cf9c4b..07ae61b 100644
--- a/lpci/commands/tests/test_run.py
+++ b/lpci/commands/tests/test_run.py
@@ -2429,7 +2429,7 @@ class TestRun(RunBaseTestCase):
str(result.errors[0]),
"You configured a Snap `classic`, "
+ "but you did not specify a valid value. "
- + "Valid values would either be `True` or `False`.",
+ + "Valid values would either be `true` or `false`.",
)
@patch("lpci.commands.run.get_provider")