Fixed test ToIEnumTest that had failing condition

pull/147/head
dahall 2020-07-11 16:27:16 -06:00
parent adae5b3268
commit 2348a4f3e7
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ namespace Vanara.Extensions.Tests
Assert.That(v, Is.EqualTo(14));
Assert.That(((IntPtr)h).ToIEnum<int>(0, i), Is.Empty);
Assert.That(IntPtr.Zero.ToIEnum<int>(3, i), Is.Empty);
Assert.That(IntPtr.Zero.ToIEnum<int>(0, i), Is.Empty);
}
[Test()]