@@ -12550,6 +12550,7 @@ describe('plugin-meetings', () => {
1255012550 let showAutoEndMeetingWarningSpy;
1255112551 let canAttendeeRequestAiAssistantEnabledSpy;
1255212552 let attendeeRequestAiAssistantDeclinedAllSpy;
12553+ let isAnonymizeDisplayNamesEnabledSpy;
1255312554 // Due to import tree issues, hasHints must be stubed within the scope of the `it`.
1255412555
1255512556 beforeEach(() => {
@@ -12598,6 +12599,10 @@ describe('plugin-meetings', () => {
1259812599 MeetingUtil,
1259912600 'attendeeRequestAiAssistantDeclinedAll'
1260012601 );
12602+ isAnonymizeDisplayNamesEnabledSpy = sinon.spy(
12603+ MeetingUtil,
12604+ 'isAnonymizeDisplayNamesEnabled'
12605+ );
1260112606 });
1260212607
1260312608 afterEach(() => {
@@ -12606,6 +12611,7 @@ describe('plugin-meetings', () => {
1260612611 showAutoEndMeetingWarningSpy.restore();
1260712612 canAttendeeRequestAiAssistantEnabledSpy.restore();
1260812613 attendeeRequestAiAssistantDeclinedAllSpy.restore();
12614+ isAnonymizeDisplayNamesEnabledSpy.restore();
1260912615 });
1261012616
1261112617 forEach(
@@ -13163,6 +13169,7 @@ describe('plugin-meetings', () => {
1316313169 meeting.roles
1316413170 );
1316513171 assert.calledWith(attendeeRequestAiAssistantDeclinedAllSpy, userDisplayHints);
13172+ assert.calledWith(isAnonymizeDisplayNamesEnabledSpy, userDisplayHints);
1316613173
1316713174 assert.calledWith(ControlsOptionsUtil.hasHints, {
1316813175 requiredHints: [DISPLAY_HINTS.MUTE_ALL],
0 commit comments