Fix tests

Conrad Irwin created

Change summary

crates/collab_ui/src/chat_panel/message_editor.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/collab_ui/src/chat_panel/message_editor.rs 🔗

@@ -221,7 +221,7 @@ impl MessageEditor {
         let start_offset = end_offset - query.len();
         let start_anchor = buffer.read(cx).anchor_before(start_offset);
 
-        let mut names = HashSet::new();
+        let mut names = HashSet::default();
         for (github_login, _) in self.channel_members.iter() {
             names.insert(github_login.clone());
         }