diff options
author | obscuren <geffobscura@gmail.com> | 2015-05-13 01:05:33 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-05-13 01:05:33 +0800 |
commit | 8e24378cc1acb074b56de75bf0baf6feb7927677 (patch) | |
tree | 71f866652de6b45da5ad4403b88f5def9a684e36 /tests/block_test.go | |
parent | 7d69679935ff8c04aebb60f27074f08c5e84ac95 (diff) | |
parent | 8fe01b4bfa28ad5a1fdde7f9837e8f982843389a (diff) | |
download | dexon-8e24378cc1acb074b56de75bf0baf6feb7927677.tar dexon-8e24378cc1acb074b56de75bf0baf6feb7927677.tar.gz dexon-8e24378cc1acb074b56de75bf0baf6feb7927677.tar.bz2 dexon-8e24378cc1acb074b56de75bf0baf6feb7927677.tar.lz dexon-8e24378cc1acb074b56de75bf0baf6feb7927677.tar.xz dexon-8e24378cc1acb074b56de75bf0baf6feb7927677.tar.zst dexon-8e24378cc1acb074b56de75bf0baf6feb7927677.zip |
Merge branch 'release/0.9.20'
Diffstat (limited to 'tests/block_test.go')
-rw-r--r-- | tests/block_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/block_test.go b/tests/block_test.go index e72f2b548..0ba0aefa2 100644 --- a/tests/block_test.go +++ b/tests/block_test.go @@ -1,7 +1,7 @@ package tests import ( - "path" + "path/filepath" "testing" "github.com/ethereum/go-ethereum/accounts" @@ -99,7 +99,7 @@ func runBlockTest(name string, test *BlockTest, t *testing.T) { } func testEthConfig() *eth.Config { - ks := crypto.NewKeyStorePassphrase(path.Join(common.DefaultDataDir(), "keys")) + ks := crypto.NewKeyStorePassphrase(filepath.Join(common.DefaultDataDir(), "keystore")) return ð.Config{ DataDir: common.DefaultDataDir(), |