Skip to content

Commit c295f6f

Browse files
committed
Fix: ordering
1 parent ba0929d commit c295f6f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/TestProject/IPNetworkTest/IPNetworkOperatorTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,8 +382,8 @@ public void TestOperatorAddOverflow(string left, int right, string expected)
382382
/// Tests Operator functionality with Operator -.
383383
/// </summary>
384384
[TestMethod]
385+
[DataRow("10.0.0.0/32", 0, "10.0.0.0/32")]
385386
[DataRow("10.0.0.0/32", 1, "")]
386-
[DataRow("255.255.255.255/32", 1, "")]
387387
[DataRow("10.0.0.0/32", 3, "")]
388388
[DataRow("10.0.0.0/32", 7, "")]
389389
[DataRow("10.0.0.0/32", 15, "")]
@@ -392,6 +392,7 @@ public void TestOperatorAddOverflow(string left, int right, string expected)
392392
[DataRow("10.0.0.0/32", 4095, "")]
393393
[DataRow("10.0.0.0/32", -1, "10.0.0.0/31")]
394394
[DataRow("10.0.0.0/32", -10, "10.0.0.0/29, 10.0.0.8/31, 10.0.0.10/32")]
395+
[DataRow("255.255.255.255/32", 1, "")]
395396
[DataRow("::/128", 1, "")]
396397
[DataRow("::/127", 1, "::/128")]
397398
[DataRow("::/128", 3, "")]

0 commit comments

Comments
 (0)