Skip to content

Commit

Permalink
Fix root param
Browse files Browse the repository at this point in the history
  • Loading branch information
Kidev committed Jan 30, 2025
1 parent f99b43a commit a04d595
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_commercial.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def test_cli_login_qt_commercial(capsys, monkeypatch, cmd, expected_arch, expect
cmd = cmd.format(arch)

if get_qt_account_path().exists():
shutil.rmtree(get_qt_account_path())
os.remove(get_qt_account_path())

cli = Cli()
cli._setup_settings()
Expand Down Expand Up @@ -156,7 +156,7 @@ def test_commercial_installer_auto_answers():
None,
"user",
"pass",
"/output",
"./output",
False,
[
"/path/to/installer",
Expand All @@ -168,7 +168,7 @@ def test_commercial_installer_auto_answers():
"--pw",
"pass",
"--root",
"/output",
str(Path("./output").absolute()),
"--auto-answer",
CommercialInstaller.get_auto_answers(),
],
Expand Down Expand Up @@ -386,7 +386,7 @@ def modify_qt_config(content):
"--pw",
TEST_PASSWORD,
],
"Downloading",
"installing",
),
],
)
Expand Down

0 comments on commit a04d595

Please sign in to comment.