From 2fcdebc34d60acc4e28ce9d3515853bc3da22bd5 Mon Sep 17 00:00:00 2001 From: Derek Collison Date: Fri, 5 Feb 2016 07:36:48 -0800 Subject: [PATCH] formatting --- test/bench_test.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/bench_test.go b/test/bench_test.go index 7b6e8906..02a3e635 100644 --- a/test/bench_test.go +++ b/test/bench_test.go @@ -72,41 +72,41 @@ func sizedString(sz int) string { return string(sizedBytes(sz)) } -func Benchmark___PubNo_Payload(b *testing.B) { +func Benchmark____PubNo_Payload(b *testing.B) { benchPub(b, "a", "") } -func Benchmark___Pub8b_Payload(b *testing.B) { +func Benchmark____Pub8b_Payload(b *testing.B) { b.StopTimer() s := sizedString(8) benchPub(b, "a", s) } -func Benchmark__Pub32b_Payload(b *testing.B) { +func Benchmark___Pub32b_Payload(b *testing.B) { b.StopTimer() s := sizedString(32) benchPub(b, "a", s) } -func Benchmark_Pub256B_Payload(b *testing.B) { +func Benchmark__Pub256B_Payload(b *testing.B) { b.StopTimer() s := sizedString(256) benchPub(b, "a", s) } -func Benchmark___Pub1K_Payload(b *testing.B) { +func Benchmark____Pub1K_Payload(b *testing.B) { b.StopTimer() s := sizedString(1024) benchPub(b, "a", s) } -func Benchmark___Pub4K_Payload(b *testing.B) { +func Benchmark____Pub4K_Payload(b *testing.B) { b.StopTimer() s := sizedString(4 * 1024) benchPub(b, "a", s) } -func Benchmark___Pub8K_Payload(b *testing.B) { +func Benchmark____Pub8K_Payload(b *testing.B) { b.StopTimer() s := sizedString(8 * 1024) benchPub(b, "a", s)