Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
fix(builder): remove vfs on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Monroy authored and carmstrong committed Oct 7, 2014
1 parent 83e585e commit 8a3fa67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builder/tests/builder_test.go
Expand Up @@ -41,9 +41,9 @@ func TestBuilder(t *testing.T) {
host, port := utils.HostAddress(), utils.RandomPort()
fmt.Printf("--- Run deis/builder:%s at %s:%s\n", tag, host, port)
name := "deis-builder-" + tag
defer cli.CmdRm("-f", name)
defer cli.CmdRm("-f", "-v", name)
go func() {
_ = cli.CmdRm("-f", name)
_ = cli.CmdRm("-f", "-v", name)
err = dockercli.RunContainer(cli,
"--name", name,
"--rm",
Expand Down

0 comments on commit 8a3fa67

Please sign in to comment.