Skip to content

Commit

Permalink
tpl: Fix broken benchmarks
Browse files Browse the repository at this point in the history
But that did not explain issue #2935:

```
BenchmarkPartial-4                       200000          6452 ns/op        1040 B/op          30 allocs/op
BenchmarkPartialCached-4                 500000          4104 ns/op         544 B/op          14 allocs/op
BenchmarkPartialCachedVariants-4         500000          3398 ns/op         624 B/op          17 allocs/op
```
  • Loading branch information
bep committed Jan 14, 2017
1 parent 92ba721 commit 85c7578
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tpl/template_funcs_test.go
Expand Up @@ -2833,6 +2833,7 @@ func TestPartialCached(t *testing.T) {
}

func BenchmarkPartial(b *testing.B) {
tstInitTemplates()
tmpl, err := New(logger).New("testroot").Parse(`{{ partial "bench1" . }}`)
if err != nil {
b.Fatalf("unable to create new html template: %s", err)
Expand All @@ -2852,6 +2853,7 @@ func BenchmarkPartial(b *testing.B) {
}

func BenchmarkPartialCached(b *testing.B) {
tstInitTemplates()
tmpl, err := New(logger).New("testroot").Parse(`{{ partialCached "bench1" . }}`)
if err != nil {
b.Fatalf("unable to create new html template: %s", err)
Expand Down

0 comments on commit 85c7578

Please sign in to comment.