aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Symonds <dsymonds@golang.org>2011-07-06 14:18:46 +1000
committerDavid Symonds <dsymonds@golang.org>2011-07-06 14:18:46 +1000
commitd45ba2c146e5861569a34f44907fae1386b238ab (patch)
tree1db2fe2e18bde7e4d363536dfa187547dd3aac9c
parent1e6d946594953e5bc7f4b33c52b0d6280ff6c0bd (diff)
downloadgo-d45ba2c146e5861569a34f44907fae1386b238ab.tar.gz
go-d45ba2c146e5861569a34f44907fae1386b238ab.zip
exp/template: remove debugging dreg.
R=r, gri TBR=r CC=golang-dev https://golang.org/cl/4671047
-rw-r--r--src/pkg/exp/template/lex_test.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pkg/exp/template/lex_test.go b/src/pkg/exp/template/lex_test.go
index 4246b400dd..67c4bb0600 100644
--- a/src/pkg/exp/template/lex_test.go
+++ b/src/pkg/exp/template/lex_test.go
@@ -140,7 +140,6 @@ func collect(t *lexTest) (items []item) {
func TestLex(t *testing.T) {
for _, test := range lexTests {
- println(test.name)
items := collect(&test)
if !reflect.DeepEqual(items, test.items) {
t.Errorf("%s: got\n\t%v\nexpected\n\t%v", test.name, items, test.items)