Skip to content
Snippets Groups Projects
Commit 839057f0 authored by Ashwin Kumar Karnad's avatar Ashwin Kumar Karnad
Browse files

fix typo: variable deleted by black

parent 3e5eadce
No related branches found
No related tags found
2 merge requests!19Move linux-debian11 into main,!1Resolve "First draft for user interface for top level install command"
Pipeline #367360 passed
......@@ -180,6 +180,7 @@ def test_install_environment(tmp_path):
with open(build_log, "r") as f:
lines = f.read()
assert "##### Installation finished" in lines
build_log_file_name = os.path.basename(build_log)
# assert that install log files exists
assert os.path.exists(release_base_dir / "install.log")
......@@ -189,7 +190,7 @@ def test_install_environment(tmp_path):
with open(release_base_dir / "install.log", "r") as f:
lines = f.read()
assert (
"installing {toolchain_to_test} and logging at logs/{build_log_file_name}"
f"installing {toolchain_to_test} and logging at logs/{build_log_file_name}"
in lines
)
# assert that the module files are created correctly
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment