mirror of
https://github.com/zulip/zulip.git
synced 2025-11-13 10:26:28 +00:00
compose_state: Rename private_message_recipient to clarify it stores emails.
This will add clarity as we move towards using ids more and emails less.
This commit is contained in:
@@ -49,7 +49,9 @@ export const pm_recipient = {
|
||||
},
|
||||
|
||||
async expect(page: Page, expected: string): Promise<void> {
|
||||
const actual_recipients = await page.evaluate(() => zulip_test.private_message_recipient());
|
||||
const actual_recipients = await page.evaluate(() =>
|
||||
zulip_test.private_message_recipient_emails(),
|
||||
);
|
||||
assert.equal(actual_recipients, expected);
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user