From 98687c80a13ff09f6ea0427f472154361ccc7f33 Mon Sep 17 00:00:00 2001 From: Brandon Smith Date: Tue, 11 Aug 2015 11:25:40 -0300 Subject: [PATCH] Fixed minor event test issue --- Discord.Net.Tests/Tests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Discord.Net.Tests/Tests.cs b/Discord.Net.Tests/Tests.cs index d055aa76d..89e73a02f 100644 --- a/Discord.Net.Tests/Tests.cs +++ b/Discord.Net.Tests/Tests.cs @@ -53,7 +53,7 @@ namespace Discord.Net.Tests [TestMethod] public void TestCreateVoiceRoom() => TestCreateRoom(ChannelTypes.Voice); - private void TestCreateRoom(string type) + private void TestCreateRoom(string type) { Channel channel = null; string name = $"test_{_random.Next()}"; @@ -92,7 +92,7 @@ namespace Discord.Net.Tests EventHandler handler = (s, e) => { if (test != null) - result = test(s, e); + result |= test(s, e); else result = true; };