From 6059f50cf0558ca67bfc79bcba85a58a578e7287 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 28 Apr 2020 15:55:18 -0400 Subject: [PATCH] Make integration IRC a watchdog channel --- tests/Tgstation.Server.Tests/Instance/ChatTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Tgstation.Server.Tests/Instance/ChatTest.cs b/tests/Tgstation.Server.Tests/Instance/ChatTest.cs index 92577472ff..b896537cc5 100644 --- a/tests/Tgstation.Server.Tests/Instance/ChatTest.cs +++ b/tests/Tgstation.Server.Tests/Instance/ChatTest.cs @@ -78,7 +78,7 @@ namespace Tgstation.Server.Tests.Instance Assert.AreEqual(1, updatedBot.Channels.Count); Assert.AreEqual(false, updatedBot.Channels.First().IsAdminChannel); Assert.AreEqual(true, updatedBot.Channels.First().IsUpdatesChannel); - Assert.AreEqual(false, updatedBot.Channels.First().IsWatchdogChannel); + Assert.AreEqual(true, updatedBot.Channels.First().IsWatchdogChannel); Assert.AreEqual("butt2", updatedBot.Channels.First().Tag); Assert.AreEqual(channelId, updatedBot.Channels.First().IrcChannel); Assert.IsNull(updatedBot.Channels.First().DiscordChannelId);