Skip to content

Commit bd61590

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 07ef92e commit bd61590

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/test_app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ def test_local_dir_image_name(repo_with_content):
8080

8181
def test_extra_buildx_build_args(repo_with_content):
8282
upstream, sha1 = repo_with_content
83-
argv = ['--DockerEngine.extra_buildx_build_args=--check', upstream]
83+
argv = ["--DockerEngine.extra_buildx_build_args=--check", upstream]
8484
app = make_r2d(argv)
8585
with patch("repo2docker.docker.execute_cmd") as execute_cmd:
8686
app.build()
87-
87+
8888
args, kwargs = execute_cmd.call_args
8989
cmd = args[0]
9090
assert cmd[:3] == ["docker", "buildx", "build"]

0 commit comments

Comments
 (0)