aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-11-23 02:51:48 +0800
committerDan Finlay <dan@danfinlay.com>2016-11-23 02:51:48 +0800
commit0289444fcb032eca53fca591a10eb6743f2ff485 (patch)
tree6f9455eb5effff26057c8927f81190f5b24ccc2d /test/unit
parentea56426b2355c1076c18256fb0b4e74f47ff4b39 (diff)
parentca819781cb68fc89af5a299df2710101b4b9cfe3 (diff)
downloadtangerine-wallet-browser-0289444fcb032eca53fca591a10eb6743f2ff485.tar.gz
tangerine-wallet-browser-0289444fcb032eca53fca591a10eb6743f2ff485.tar.zst
tangerine-wallet-browser-0289444fcb032eca53fca591a10eb6743f2ff485.zip
Merge branch 'dev' into i842-WaitForSeedWord
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/keyrings/hd-test.js8
-rw-r--r--test/unit/keyrings/simple-test.js6
2 files changed, 7 insertions, 7 deletions
diff --git a/test/unit/keyrings/hd-test.js b/test/unit/keyrings/hd-test.js
index c22ffc913..bec1a8134 100644
--- a/test/unit/keyrings/hd-test.js
+++ b/test/unit/keyrings/hd-test.js
@@ -27,9 +27,9 @@ describe('hd-keyring', function() {
assert.equal(accounts[1], secondAcct)
})
- describe('Keyring.type()', function() {
- it('is a class method that returns the type string.', function() {
- const type = HdKeyring.type()
+ describe('Keyring.type', function() {
+ it('is a class property that returns the type string.', function() {
+ const type = HdKeyring.type
assert.equal(typeof type, 'string')
})
})
@@ -37,7 +37,7 @@ describe('hd-keyring', function() {
describe('#type', function() {
it('returns the correct value', function() {
const type = keyring.type
- const correct = HdKeyring.type()
+ const correct = HdKeyring.type
assert.equal(type, correct)
})
})
diff --git a/test/unit/keyrings/simple-test.js b/test/unit/keyrings/simple-test.js
index ba000a7a8..96a2fdcf0 100644
--- a/test/unit/keyrings/simple-test.js
+++ b/test/unit/keyrings/simple-test.js
@@ -13,9 +13,9 @@ describe('simple-keyring', function() {
keyring = new SimpleKeyring()
})
- describe('Keyring.type()', function() {
- it('is a class method that returns the type string.', function() {
- const type = SimpleKeyring.type()
+ describe('Keyring.type', function() {
+ it('is a class property that returns the type string.', function() {
+ const type = SimpleKeyring.type
assert.equal(type, TYPE_STR)
})
})