diff options
author | Ian Lance Taylor <iant@golang.org> | 2014-10-31 10:20:36 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2014-10-31 10:20:36 -0700 |
commit | 9789974a197243aa1f5065901147b82ea1cf102e (patch) | |
tree | 5ffef155a5a1d234dbee387e129ef7e18485715d /src | |
parent | 8a01a805c2511aed824df2156c7ab35eb1babdb3 (diff) | |
download | go-9789974a197243aa1f5065901147b82ea1cf102e.tar.gz |
net/http: add missing newline in list of leaked goroutines
LGTM=bradfitz
R=bradfitz
CC=golang-codereviews
https://codereview.appspot.com/168860044
Diffstat (limited to 'src')
-rw-r--r-- | src/net/http/main_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/http/main_test.go b/src/net/http/main_test.go index 9f1dfc372..b8c71fd19 100644 --- a/src/net/http/main_test.go +++ b/src/net/http/main_test.go @@ -70,7 +70,7 @@ func goroutineLeaked() bool { } fmt.Fprintf(os.Stderr, "Too many goroutines running after net/http test(s).\n") for stack, count := range stackCount { - fmt.Fprintf(os.Stderr, "%d instances of:\n%s", count, stack) + fmt.Fprintf(os.Stderr, "%d instances of:\n%s\n", count, stack) } return true } |