From e7d80688aacdf9c9636ead34281bbcbd026aea32 Mon Sep 17 00:00:00 2001 From: Oleksii Holub <1935960+Tyrrrz@users.noreply.github.com> Date: Wed, 8 Feb 2023 18:36:03 +0200 Subject: [PATCH] Fix tests --- DiscordChatExporter.Cli.Tests/Specs/HtmlMentionSpecs.cs | 2 +- DiscordChatExporter.Cli.Tests/Specs/JsonMentionSpecs.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DiscordChatExporter.Cli.Tests/Specs/HtmlMentionSpecs.cs b/DiscordChatExporter.Cli.Tests/Specs/HtmlMentionSpecs.cs index c16f0bf..d845da5 100644 --- a/DiscordChatExporter.Cli.Tests/Specs/HtmlMentionSpecs.cs +++ b/DiscordChatExporter.Cli.Tests/Specs/HtmlMentionSpecs.cs @@ -54,7 +54,7 @@ public class HtmlMentionSpecs : IClassFixture ); // Assert - message.Text().Should().Contain("Voice channel mention: 🔊chaos-vc"); + message.Text().Should().Contain("Voice channel mention: 🔊general"); } [Fact] diff --git a/DiscordChatExporter.Cli.Tests/Specs/JsonMentionSpecs.cs b/DiscordChatExporter.Cli.Tests/Specs/JsonMentionSpecs.cs index fd0c54d..00cff6a 100644 --- a/DiscordChatExporter.Cli.Tests/Specs/JsonMentionSpecs.cs +++ b/DiscordChatExporter.Cli.Tests/Specs/JsonMentionSpecs.cs @@ -60,7 +60,7 @@ public class JsonMentionSpecs : IClassFixture ); // Assert - message.GetProperty("content").GetString().Should().Be("Voice channel mention: #chaos-vc [voice]"); + message.GetProperty("content").GetString().Should().Be("Voice channel mention: #general [voice]"); } [Fact]