fix(keybase): Minor linter errors

This commit is contained in:
Ben Gotow 2016-06-07 14:25:59 -07:00
parent 631eff5d47
commit db0640a614

View file

@ -98,14 +98,14 @@ fdescribe "PGPKeyStore", ->
# blow away the saved identities and set up a test pub/priv keypair # blow away the saved identities and set up a test pub/priv keypair
PGPKeyStore._identities = {} PGPKeyStore._identities = {}
pubIdent = new Identity({ pubIdent = new Identity({
addresses: ["benbitdiddle@icloud.com"] addresses: ["benbitdiddle@icloud.com"]
isPriv: false isPriv: false
}) })
PGPKeyStore._identities[pubIdent.clientId] = pubIdent PGPKeyStore._identities[pubIdent.clientId] = pubIdent
privIdent = new Identity({ privIdent = new Identity({
addresses: ["benbitdiddle@icloud.com"] addresses: ["benbitdiddle@icloud.com"]
isPriv: true isPriv: true
}) })
PGPKeyStore._identities[privIdent.clientId] = privIdent PGPKeyStore._identities[privIdent.clientId] = privIdent
describe "when handling private keys", -> describe "when handling private keys", ->