refs #6159 fixSpec
gitea/salix/pipeline/head Build queued... Details

This commit is contained in:
Pablo Natek 2023-09-04 13:16:35 +02:00
parent 0d05aa521b
commit d14c49519e
1 changed files with 2 additions and 2 deletions

View File

@ -13,11 +13,11 @@ describe('Client setPassword', () => {
expect(error.message).toEqual(`Modifiable password only via recovery or by an administrator`); expect(error.message).toEqual(`Modifiable password only via recovery or by an administrator`);
}); });
it('should change the password of the client', async() => { fit('should change the password of the client', async() => {
let error; let error;
try { try {
await models.Client.setPassword(1101, 't0pl3v3l.p455w0rd!'); await models.Client.setPassword(1105, 't0pl3v3l.p455w0rd!');
} catch (e) { } catch (e) {
error = e; error = e;
} }