fix test for account powers validation

This commit is contained in:
Andre Staltz 2023-11-23 12:55:17 +02:00
parent f8db4fb224
commit d21c7ed697
No known key found for this signature in database
GPG Key ID: 9EDE23EA7E8A4890
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ test('account.add()', async (t) => {
account,
keypair: keypair2,
consent,
powers: ['box'],
powers: ['external-encryption'],
})
assert.ok(accountRec1, 'accountRec1 exists')
const { id, msg } = accountRec1
@ -50,7 +50,7 @@ test('account.add()', async (t) => {
bytes: keypair2.public,
},
consent,
powers: ['box'],
powers: ['external-encryption'],
},
'msg.data.add NEW KEY'
)