Skip to content

Commit

Permalink
Revert wrong expected
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Nov 7, 2024
1 parent 30ff1a4 commit a091809
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev/archery/archery/docker/tests/test_docker_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_docker_run_with_custom_command(run, build, pull):

assert result.exit_code == 0
pull.assert_called_once_with(
"--quiet", "ubuntu-cpp", pull_leaf=True,
"ubuntu-cpp", pull_leaf=True,
)
build.assert_called_once_with(
"ubuntu-cpp",
Expand Down Expand Up @@ -72,7 +72,7 @@ def test_docker_run_options(run, build, pull):
result = CliRunner().invoke(docker, args)
assert result.exit_code == 0
pull.assert_called_once_with(
"--quiet", "ubuntu-cpp", pull_leaf=True,
"ubuntu-cpp", pull_leaf=True,
)
build.assert_called_once_with(
"ubuntu-cpp",
Expand Down Expand Up @@ -149,7 +149,7 @@ def test_docker_run_only_pulling_and_building(build, pull):
result = CliRunner().invoke(docker, args)
assert result.exit_code == 0
pull.assert_called_once_with(
"--quiet", "ubuntu-cpp", pull_leaf=True,
"ubuntu-cpp", pull_leaf=True,
)
build.assert_called_once_with(
"ubuntu-cpp",
Expand Down

0 comments on commit a091809

Please sign in to comment.