You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by ne...@apache.org on 2016/11/07 19:29:58 UTC

[12/21] incubator-trafficcontrol git commit: Fix TM2 cache/astats_test.go len on struct

Fix TM2 cache/astats_test.go len on struct


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/2b2e90b4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/2b2e90b4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/2b2e90b4

Branch: refs/heads/master
Commit: 2b2e90b4acf81fbbdb4818ccf7e896a084b783da
Parents: 25e80eb
Author: Robert Butts <ro...@gmail.com>
Authored: Thu Nov 3 09:00:37 2016 -0600
Committer: Dave Neuman <ne...@apache.org>
Committed: Mon Nov 7 12:29:08 2016 -0700

----------------------------------------------------------------------
 traffic_monitor/experimental/traffic_monitor/cache/astats_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/2b2e90b4/traffic_monitor/experimental/traffic_monitor/cache/astats_test.go
----------------------------------------------------------------------
diff --git a/traffic_monitor/experimental/traffic_monitor/cache/astats_test.go b/traffic_monitor/experimental/traffic_monitor/cache/astats_test.go
index 14401c3..416663d 100644
--- a/traffic_monitor/experimental/traffic_monitor/cache/astats_test.go
+++ b/traffic_monitor/experimental/traffic_monitor/cache/astats_test.go
@@ -18,5 +18,5 @@ func TestAstats(t *testing.T) {
 	if err != nil {
 		t.Log(err)
 	}
-	fmt.Printf("Found %v key/val pairs in ats, and %v key/val pairs in system\n", len(aStats.Ats), len(aStats.System))
+	fmt.Printf("Found %v key/val pairs in ats\n", len(aStats.Ats))
 }