From c2b324b9b47f3b71cb2eabe1dede5b8ec39dc309 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Wed, 12 Nov 2014 16:49:47 -0800 Subject: [PATCH] cmd/callgraph: fix build TBR=adonovan R=adonovan CC=golang-codereviews https://golang.org/cl/171640043 --- cmd/callgraph/main_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/callgraph/main_test.go b/cmd/callgraph/main_test.go index 81fa490c..93ccb618 100644 --- a/cmd/callgraph/main_test.go +++ b/cmd/callgraph/main_test.go @@ -40,13 +40,13 @@ func TestCallgraph(t *testing.T) { // tests: main is not called. {"rta", format, true, []string{ `pkg.Example --> (pkg.C).f`, - `test$main.init --> pkg.init`, + `testmain.init --> pkg.init`, }}, {"pta", format, true, []string{ ` --> pkg.Example`, - ` --> test$main.init`, + ` --> testmain.init`, `pkg.Example --> (pkg.C).f`, - `test$main.init --> pkg.init`, + `testmain.init --> pkg.init`, }}, } { stdout = new(bytes.Buffer)