From 7cff8db4a381f68d503fe828fb0fb35cf979741c Mon Sep 17 00:00:00 2001 From: Blake Geno Date: Fri, 17 Oct 2014 10:49:21 -0400 Subject: [PATCH] Removed unused function layerArchive Signed-off-by: Blake Geno --- integration/runtime_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/integration/runtime_test.go b/integration/runtime_test.go index 6720485e28..b17d132f8a 100644 --- a/integration/runtime_test.go +++ b/integration/runtime_test.go @@ -79,15 +79,6 @@ func cleanup(eng *engine.Engine, t *testing.T) error { return nil } -func layerArchive(tarfile string) (io.Reader, error) { - // FIXME: need to close f somewhere - f, err := os.Open(tarfile) - if err != nil { - return nil, err - } - return f, nil -} - func init() { // Always use the same driver (vfs) for all integration tests. // To test other drivers, we need a dedicated driver validation suite.