jsonrpc: do not return a result from deleteContact()

It was always true anyway.
This commit is contained in:
link2xt
2022-11-15 14:58:17 +00:00
parent b63baf939e
commit da6c68629d
2 changed files with 3 additions and 3 deletions

View File

@@ -616,7 +616,7 @@ describe('Offline Tests with unconfigured account', function () {
const id = context.createContact('someuser', 'someuser@site.com')
const contact = context.getContact(id)
strictEqual(contact.getId(), id, 'contact id matches')
strictEqual(context.deleteContact(id), true, 'delete call succesful')
context.deleteContact(id)
strictEqual(context.getContact(id), null, 'contact is gone')
})