From bde2d3aef7715814920a07d2c5e08d14eabe3e53 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Tue, 21 Jan 2014 10:39:50 +0100 Subject: [PATCH] integration: Fix TestGetContainersExport The tar changes made the name of the file in the tar archive change from "./test" to "test", update the test to the new name. Docker-DCO-1.1-Signed-off-by: Alexander Larsson (github: alexlarsson) --- integration/api_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/api_test.go b/integration/api_test.go index 30409c907b..00b10c22d2 100644 --- a/integration/api_test.go +++ b/integration/api_test.go @@ -374,7 +374,7 @@ func TestGetContainersExport(t *testing.T) { } t.Fatal(err) } - if h.Name == "./test" { + if h.Name == "test" { found = true break }