Skip to content

Commit

Permalink
fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
nanddeepn authored and milanholemans committed Oct 4, 2024
1 parent d7ede58 commit 92cd95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/m365/entra/commands/m365group/m365group-set.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ describe(commands.M365GROUP_SET, () => {
sinon.stub(stats, 'isDirectory').returns(false);
sinon.stub(fs, 'existsSync').returns(true);
sinon.stub(fs, 'lstatSync').returns(stats);
const actual = await command.validate({ options: { id: '28beab62-7540-4db1-a23f-29a6018a3848', newDisplayName: 'Title', description: 'Description', logoPath: 'logo.png', owners: '[email protected]', members: '[email protected]', isPrivate: false, allowExternalSenders: false, autoSubscribeNewMembers: false, hideFromAddressLists: false, hideFromOutlookClients: false } }, commandInfo);
const actual = await command.validate({ options: { id: '28beab62-7540-4db1-a23f-29a6018a3848', newDisplayName: 'Title', description: 'Description', logoPath: 'logo.png', ownerIds: userIds.join(','), memberIds: userIds.join(','), isPrivate: false, allowExternalSenders: false, autoSubscribeNewMembers: false, hideFromAddressLists: false, hideFromOutlookClients: false } }, commandInfo);
assert.strictEqual(actual, true);
});
});

0 comments on commit 92cd95c

Please sign in to comment.