From dde1d8746e9b0e2c21170916a4021b50e02e2f74 Mon Sep 17 00:00:00 2001 From: Sarah Marshall Date: Wed, 23 Dec 2020 11:03:02 -0800 Subject: [PATCH] Remove assertion that compilation had no warnings --- src/Tests/IQsharpEngineTests.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Tests/IQsharpEngineTests.cs b/src/Tests/IQsharpEngineTests.cs index 45331adc1a..358b155cda 100644 --- a/src/Tests/IQsharpEngineTests.cs +++ b/src/Tests/IQsharpEngineTests.cs @@ -52,7 +52,6 @@ public static async Task AssertCompile(IQSharpEngine engine, string sour var response = await engine.ExecuteMundane(source, channel); PrintResult(response, channel); Assert.AreEqual(ExecuteStatus.Ok, response.Status); - Assert.AreEqual(0, channel.msgs.Count); CollectionAssert.AreEquivalent(expectedOps, response.Output as string[]); return response.Output?.ToString();