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-06-06 21:20:51 +0800 |
commit | efa2b3da7ede771d2c80d27abb2aabd140028d66 (patch) | |
tree | 1ed39c22e0336fe7d6c9b19ba79fa9f6ec24c125 /cmd | |
parent | e3b3c298df45131d8856724da6b5b0e70558a6e6 (diff) | |
download | go-tangerine-efa2b3da7ede771d2c80d27abb2aabd140028d66.tar go-tangerine-efa2b3da7ede771d2c80d27abb2aabd140028d66.tar.gz go-tangerine-efa2b3da7ede771d2c80d27abb2aabd140028d66.tar.bz2 go-tangerine-efa2b3da7ede771d2c80d27abb2aabd140028d66.tar.lz go-tangerine-efa2b3da7ede771d2c80d27abb2aabd140028d66.tar.xz go-tangerine-efa2b3da7ede771d2c80d27abb2aabd140028d66.tar.zst go-tangerine-efa2b3da7ede771d2c80d27abb2aabd140028d66.zip |
[release/1.4.6] cmd/geth: use text/templates in the tester, not html
(cherry picked from commit 284f1d6beb589d240a18e9b63560266041fa9798)
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" ) |