aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-05-11 16:58:48 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-05-11 16:58:48 +0800
commit284f1d6beb589d240a18e9b63560266041fa9798 (patch)
treebbd3bebd528036df58f7dc8376747589c4cc1a91 /cmd
parentc05db38a5ee87c1700faf929db0a9156b263ec95 (diff)
downloadgo-tangerine-284f1d6beb589d240a18e9b63560266041fa9798.tar
go-tangerine-284f1d6beb589d240a18e9b63560266041fa9798.tar.gz
go-tangerine-284f1d6beb589d240a18e9b63560266041fa9798.tar.bz2
go-tangerine-284f1d6beb589d240a18e9b63560266041fa9798.tar.lz
go-tangerine-284f1d6beb589d240a18e9b63560266041fa9798.tar.xz
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.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"
)