aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/keyrings/simple-test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/keyrings/simple-test.js')
-rw-r--r--test/unit/keyrings/simple-test.js6
1 files changed, 3 insertions, 3 deletions
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)
})
})