Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-zuyev committed Jul 8, 2021
1 parent 137e056 commit f3848ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/pkg_install_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func dpkgInstall(ctx context.Context, t *testing.T, image, deb string) (*RunResu

func dpkgInstallDriver(ctx context.Context, t *testing.T, image, deb string) (*RunResult, error) {
return Run(t, exec.CommandContext(ctx,
"docker", "run", "--rm", "", fmt.Sprintf("-v%s:/var/tmp", filepath.Dir(deb)),
"docker", "run", "--rm", fmt.Sprintf("-v%s:/var/tmp", filepath.Dir(deb)),
image,
"sh", "-c", fmt.Sprintf("apt-get update; apt-get install -y libvirt0; dpkg -i /var/tmp/%s", filepath.Base(deb))))
}

0 comments on commit f3848ee

Please sign in to comment.