From 81ae14e1e465276e71d025ce797b45a69e6be810 Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Tue, 29 Oct 2013 14:42:34 -0700 Subject: [PATCH] remove some logs from tests Upstream-commit: 86970d00bbb9c5e3184fe4e3e7442fd0865c80ec Component: engine --- components/engine/runtime_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/engine/runtime_test.go b/components/engine/runtime_test.go index c7cea75616..5f4aa92e5a 100644 --- a/components/engine/runtime_test.go +++ b/components/engine/runtime_test.go @@ -608,7 +608,6 @@ func TestReloadContainerLinks(t *testing.T) { runningCount := 0 for _, c := range runtime2.List() { if c.State.Running { - t.Logf("Running container found: %v (%v)", c.ID, c.Path) runningCount++ } } @@ -623,7 +622,6 @@ func TestReloadContainerLinks(t *testing.T) { t.Fatalf("Container 2 %s should be registered first in the runtime", container2.ID) } - t.Logf("Number of links: %d", runtime2.containerGraph.Refs("0")) // Verify that the link is still registered in the runtime entity := runtime2.containerGraph.Get(container1.Name) if entity == nil {