minor: Move narrow mock to be in lexical order.

This commit is contained in:
Steve Howell 2021-04-16 15:45:32 +00:00 committed by Tim Abbott
parent a2809dd361
commit d14441ffd3
1 changed files with 3 additions and 3 deletions

View File

@ -76,9 +76,6 @@ mock_esm("../../static/js/hash_util", {
by_stream_topic_uri: () => "https://www.example.com",
});
mock_esm("../../static/js/narrow", {
set_narrow_title: noop,
});
mock_esm("../../static/js/message_list_data", {
MessageListData: class {},
});
@ -96,6 +93,9 @@ mock_esm("../../static/js/muting", {
return false;
},
});
mock_esm("../../static/js/narrow", {
set_narrow_title: noop,
});
mock_esm("../../static/js/recent_senders", {
get_topic_recent_senders: () => [1, 2],
});