diff options
author | zelig <viktor.tron@gmail.com> | 2015-03-25 05:53:46 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-03-27 03:00:18 +0800 |
commit | fee224f07582a3f4c74f214347a89061ce75d2a1 (patch) | |
tree | 2ff3ab6c47ee01987f1a88bda997a4535bfa821e /cmd | |
parent | d1b52efdb581ca90613d2047b974d3a128f9bc58 (diff) | |
download | dexon-fee224f07582a3f4c74f214347a89061ce75d2a1.tar.gz dexon-fee224f07582a3f4c74f214347a89061ce75d2a1.tar.zst dexon-fee224f07582a3f4c74f214347a89061ce75d2a1.zip |
cli test: fix test newJSRE interactive argument
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/ethereum/js_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ethereum/js_test.go b/cmd/ethereum/js_test.go index a6058b318..580bc7a2b 100644 --- a/cmd/ethereum/js_test.go +++ b/cmd/ethereum/js_test.go @@ -47,7 +47,7 @@ func testJEthRE(t *testing.T) (repl *jsre, ethereum *eth.Ethereum, err error) { return } assetPath := path.Join(os.Getenv("GOPATH"), "src", "github.com", "ethereum", "go-ethereum", "cmd", "mist", "assets", "ext") - repl = newJSRE(ethereum, assetPath) + repl = newJSRE(ethereum, assetPath, false) return } |