diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-05-11 16:58:48 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-05-11 16:58:48 +0800 |
commit | 284f1d6beb589d240a18e9b63560266041fa9798 (patch) | |
tree | bbd3bebd528036df58f7dc8376747589c4cc1a91 /cmd | |
parent | c05db38a5ee87c1700faf929db0a9156b263ec95 (diff) | |
download | go-tangerine-284f1d6beb589d240a18e9b63560266041fa9798.tar.gz go-tangerine-284f1d6beb589d240a18e9b63560266041fa9798.tar.zst go-tangerine-284f1d6beb589d240a18e9b63560266041fa9798.zip |
cmd/geth: use text/templates in the tester, not html
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/geth/run_test.go | 2 |
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" ) |