Skip to content

Commit 78f5b11

Browse files
committed
Remove duplicate test cases
1 parent bc04603 commit 78f5b11

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/CommandLine.Tests/Unit/Core/TypeConverterTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ public static IEnumerable<object[]> ChangeType_scalars_source
5050
new object[] {((long) int.MinValue - 1).ToString(), typeof (int), true, null},
5151

5252
new object[] {"1", typeof (uint), false, (uint) 1},
53-
new object[] {"0", typeof (uint), false, (uint) 0},
54-
new object[] {"-1", typeof (uint), true, null},
5553
new object[] {uint.MaxValue.ToString(), typeof (uint), false, uint.MaxValue},
5654
new object[] {uint.MinValue.ToString(), typeof (uint), false, uint.MinValue},
5755
new object[] {((long) uint.MaxValue + 1).ToString(), typeof (uint), true, null},

0 commit comments

Comments
 (0)