Skip to content

Commit

Permalink
Remove Debug.Print call causing tests to fail
Browse files Browse the repository at this point in the history
Forgot to hit save properly... Whoops.
  • Loading branch information
FiniteReality committed May 28, 2018
1 parent a718a7d commit aeb3095
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/Discord.Net.Tests/Tests.Permissions.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Diagnostics;
using System.Threading.Tasks;
using Xunit;

Expand All @@ -22,7 +21,6 @@ private void TestHelper(GuildPermissions value, GuildPermission permission, bool
/// <param name="expected"></param>
private void TestHelper(ulong rawValue, ulong flagValue, bool expected)
{
Debug.Print($"Expecting {expected} for {rawValue} w/ {flagValue}");
Assert.Equal(expected, Permissions.GetValue(rawValue, flagValue));

// check that toggling the bit works
Expand Down

0 comments on commit aeb3095

Please sign in to comment.