cli test: fix test newJSRE interactive argument

This commit is contained in:
zelig 2015-03-24 21:53:46 +00:00
parent d1b52efdb5
commit fee224f075
1 changed files with 1 additions and 1 deletions

View File

@ -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
}