]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
appease spellchecker
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Tue, 21 Jan 2025 21:33:45 +0000 (22:33 +0100)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 22 Jan 2025 10:02:49 +0000 (11:02 +0100)
tests/test_config.py

index 075d7da964a5bd7276e0a06765f8c7a883a9d06b..7da3fb5af66a93fd9a65820c9a9ebf06ecb01fa3 100644 (file)
@@ -997,11 +997,11 @@ def test_match_environment(tmp_path: Path) -> None:
     with chdir(d):
         _, [conf] = parse_config(["--environment", "MYENV=abc"])
         assert conf.image_id == "matched"
-        _, [conf] = parse_config(["--environment", "MYENV=abd"])
+        _, [conf] = parse_config(["--environment", "MYENV=bad"])
         assert conf.image_id != "matched"
         _, [conf] = parse_config(["--environment", "MYEN=abc"])
         assert conf.image_id != "matched"
-        _, [conf] = parse_config(["--environment", "MYEN=abd"])
+        _, [conf] = parse_config(["--environment", "MYEN=bad"])
         assert conf.image_id != "matched"
 
     (d / "mkosi.conf").write_text(
@@ -1017,7 +1017,7 @@ def test_match_environment(tmp_path: Path) -> None:
     with chdir(d):
         _, [conf] = parse_config(["--environment", "MYENV=abc"])
         assert conf.image_id == "matched"
-        _, [conf] = parse_config(["--environment", "MYENV=abd"])
+        _, [conf] = parse_config(["--environment", "MYENV=bad"])
         assert conf.image_id == "matched"
         _, [conf] = parse_config(["--environment", "MYEN=abc"])
         assert conf.image_id != "matched"