From 03add62d3b44420a85a665a2ca3a8b6500e43369 Mon Sep 17 00:00:00 2001 From: Nikita Vilunov Date: Sat, 1 Jun 2024 13:20:59 +0200 Subject: [PATCH] fix tests --- crates/projection-irc/tests/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/projection-irc/tests/lib.rs b/crates/projection-irc/tests/lib.rs index baf728b..141dd46 100644 --- a/crates/projection-irc/tests/lib.rs +++ b/crates/projection-irc/tests/lib.rs @@ -95,7 +95,7 @@ impl<'a> TestScope<'a> { } async fn expect_cap_ls(&mut self) -> Result<()> { - self.expect(":testserver CAP * LS :sasl=PLAIN server-time").await?; + self.expect(":testserver CAP * LS :sasl=PLAIN server-time draft/chathistory").await?; Ok(()) } }