Browse Source

Remove Debug.Print call causing tests to fail

Forgot to hit save properly... Whoops.
tags/2.0
FiniteReality 7 years ago
parent
commit
aeb3095593
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      test/Discord.Net.Tests/Tests.Permissions.cs

+ 0
- 2
test/Discord.Net.Tests/Tests.Permissions.cs View File

@@ -1,5 +1,4 @@
using System; using System;
using System.Diagnostics;
using System.Threading.Tasks; using System.Threading.Tasks;
using Xunit; using Xunit;


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


// check that toggling the bit works // check that toggling the bit works


Loading…
Cancel
Save