aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-05-11 18:51:11 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-05-11 18:51:11 +0800
commitd89e57ea8d35bd98a46244b46189f0f260c3bbce (patch)
tree60a95ba64a3149f12053a3c38eb8b419037bea1f /cmd
parent5a901bb555188eb42a0eb3ee9cab2cd41de9874b (diff)
parent284f1d6beb589d240a18e9b63560266041fa9798 (diff)
downloadgo-tangerine-d89e57ea8d35bd98a46244b46189f0f260c3bbce.tar
go-tangerine-d89e57ea8d35bd98a46244b46189f0f260c3bbce.tar.gz
go-tangerine-d89e57ea8d35bd98a46244b46189f0f260c3bbce.tar.bz2
go-tangerine-d89e57ea8d35bd98a46244b46189f0f260c3bbce.tar.lz
go-tangerine-d89e57ea8d35bd98a46244b46189f0f260c3bbce.tar.xz
go-tangerine-d89e57ea8d35bd98a46244b46189f0f260c3bbce.tar.zst
go-tangerine-d89e57ea8d35bd98a46244b46189f0f260c3bbce.zip
Merge pull request #2549 from karalabe/geth-tester-text-templates
cmd/geth: use text/templates in the tester, not html
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geth/run_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/run_test.go b/cmd/geth/run_test.go
index a82eb9d68..ba4ce0c60 100644
--- a/cmd/geth/run_test.go
+++ b/cmd/geth/run_test.go
@@ -20,7 +20,6 @@ import (
"bufio"
"bytes"
"fmt"
- "html/template"
"io"
"io/ioutil"
"os"
@@ -28,6 +27,7 @@ import (
"regexp"
"sync"
"testing"
+ "text/template"
"time"
)