From d802a31be538d7c90d3f33474595dfdb77b7e50e Mon Sep 17 00:00:00 2001 From: Andrea Luzzardi Date: Mon, 28 Jan 2013 12:11:30 -0800 Subject: [PATCH] Fixed broken unit test after merge --- container.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/container.go b/container.go index 1c4b58fd33..fc73f13466 100644 --- a/container.go +++ b/container.go @@ -59,10 +59,6 @@ func createContainer(id string, root string, command string, args []string, laye stdoutLog: new(bytes.Buffer), stderrLog: new(bytes.Buffer), } - if err := container.Filesystem.createMountPoints(); err != nil { - return nil, err - } - container.stdout.AddWriter(NopWriteCloser(container.stdoutLog)) container.stderr.AddWriter(NopWriteCloser(container.stderrLog))