Skip to content

Commit

Permalink
Fix error text assertions.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlongley committed Dec 15, 2024
1 parent 71b5943 commit 476c283
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/mocha/10-provision.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ describe('provision API', () => {
should.not.exist(result);
err.data.type.should.equal('ValidationError');
err.data.message.should.equal(
'A validation error occured in the \'createConfigBody\' validator.');
'A validation error occurred in the \'createConfigBody\' validator.');
});
});

Expand Down Expand Up @@ -714,7 +714,7 @@ describe('provision API', () => {
should.not.exist(result);
err.data.type.should.equal('ValidationError');
err.data.message.should.equal(
'A validation error occured in the \'Delegated ZCAP\' validator.');
'A validation error occurred in the \'Delegated ZCAP\' validator.');
});
it('revokes a zcap', async () => {
const zcaps = {
Expand Down

0 comments on commit 476c283

Please sign in to comment.