commit | 51310d832027f0660098f5f809dc587f0a8b8f9c | [log] [tgz] |
---|---|---|
author | Shenghou Ma <minux.ma@gmail.com> | Mon Oct 08 00:21:53 2012 +0800 |
committer | Shenghou Ma <minux.ma@gmail.com> | Mon Oct 08 00:21:53 2012 +0800 |
tree | 7f96fd24aa2a720d81e189396f8ca3427a8381aa | |
parent | f8485954bf06546675ac779f18fa7e8fb561113a [diff] |
testing: fix extra tabs when t.Log("string") t.Log("line 1\nline 2\nline 3") Old output: === RUN TestLine3 --- PASS: TestLine3 (0.00 seconds) testing_test.go:25: line 1 line 2 line 3 PASS New output: === RUN TestLine3 --- PASS: TestLine3 (0.00 seconds) testing_test.go:24: line 1 line 2 line 3 PASS R=golang-dev, rsc CC=golang-dev https://golang.org/cl/6613069