make tests great again

This commit is contained in:
Girish Ramakrishnan
2024-12-04 16:36:05 +01:00
parent 2bfa49cc2e
commit e4fb040ddf
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ describe('Groups', function () {
it('can getWithMembers', async function () {
const result = await groups.getWithMembers(group0Object.id);
expect(result.name).to.be(group0Name);
expect(result.userIds).to.eql([ admin.id, user.id ]);
expect(result.userIds.sort()).to.eql([ admin.id, user.id ].sort());
});
it('can set group membership', async function () {