aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-05-11 06:42:09 +0800
committerDan Finlay <dan@danfinlay.com>2016-05-11 06:42:09 +0800
commit80c6f12839452c9a54c91dbefa411c30fc65c316 (patch)
treec190b6bee19239d8360b4dc995f0c178c4f9415c /test
parentd8bee4f5992c5a1d0851e87c49e13c97d9279411 (diff)
downloadtangerine-wallet-browser-80c6f12839452c9a54c91dbefa411c30fc65c316.tar.gz
tangerine-wallet-browser-80c6f12839452c9a54c91dbefa411c30fc65c316.tar.zst
tangerine-wallet-browser-80c6f12839452c9a54c91dbefa411c30fc65c316.zip
Fix test
Diffstat (limited to 'test')
-rw-r--r--test/unit/actions/config_test.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/actions/config_test.js b/test/unit/actions/config_test.js
index 6a0d20f31..f851e4102 100644
--- a/test/unit/actions/config_test.js
+++ b/test/unit/actions/config_test.js
@@ -36,7 +36,8 @@ describe ('config view actions', function() {
}
var result = reducers(initialState, action)
- assert.equal(result.metamask.rpcTarget, action.value)
+ assert.equal(result.metamask.provider.type, 'rpc')
+ assert.equal(result.metamask.provider.rpcTarget, action.value)
})
})
})