summaryrefslogtreecommitdiffstats
path: root/store/storetest/docker.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/storetest/docker.go')
-rw-r--r--store/storetest/docker.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/storetest/docker.go b/store/storetest/docker.go
index e62190ef2..cd2a3075a 100644
--- a/store/storetest/docker.go
+++ b/store/storetest/docker.go
@@ -31,7 +31,7 @@ type RunningContainer struct {
}
func (c *RunningContainer) Stop() error {
- l4g.Info("removing container: %v", c.Id)
+ l4g.Info("Removing container: %v", c.Id)
return exec.Command("docker", "rm", "-f", c.Id).Run()
}
@@ -111,7 +111,7 @@ func runContainer(args []string) (*RunningContainer, error) {
exec.Command("docker", "rm", "-f", id).Run()
return nil, err
}
- l4g.Info("running container: %v", id)
+ l4g.Info("Running container: %v", id)
return &RunningContainer{containers[0]}, nil
}