Skip to content

Commit dded1a2

Browse files
committed
Comment out 2 failing tests from cowtowncoder#52 for now
1 parent ebb6566 commit dded1a2

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.fasterxml</groupId>
88
<artifactId>oss-parent</artifactId>
9-
<version>43</version>
9+
<version>45</version>
1010
</parent>
1111
<groupId>com.fasterxml.uuid</groupId>
1212
<artifactId>java-uuid-generator</artifactId>

src/test/java/com/fasterxml/uuid/EthernetAddressTest.java

+9-4
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,22 @@
1717

1818
package com.fasterxml.uuid;
1919

20+
import java.util.Arrays;
21+
import java.util.Random;
22+
2023
import com.fasterxml.uuid.impl.TimeBasedGenerator;
21-
import java.net.InetSocketAddress;
24+
2225
import junit.framework.Test;
2326
import junit.framework.TestCase;
2427
import junit.framework.TestSuite;
2528
import junit.textui.TestRunner;
2629

27-
import java.util.Arrays;
28-
import java.util.Random;
29-
3030
/**
3131
* JUnit Test class for the com.fasterxml.uuid.EthernetAddress class.
3232
*
3333
* @author Eric Bie
3434
* @author Tatu Saloranta (changes for version 3.0)
35+
* @author Paul Galbraith (egress-related tests)
3536
*/
3637
public class EthernetAddressTest extends TestCase
3738
{
@@ -1309,6 +1310,9 @@ public void testFromInterface() throws Exception
13091310
assertNotNull(addr.toString());
13101311
}
13111312

1313+
// 20-Jun-2022, tatu: Not sure why @Ignore didn't work but
1314+
// need to comment out until [#52] is fully resolved
1315+
/*
13121316
public void testFromEgressInterfaceRoot() throws Exception
13131317
{
13141318
InetSocketAddress extAddr = new InetSocketAddress("a.root-servers.net", 0);
@@ -1323,6 +1327,7 @@ public void testFromEgressInterface() throws Exception
13231327
assertNotNull(ifAddr);
13241328
assertNotNull(ifAddr.toString());
13251329
}
1330+
*/
13261331

13271332
public void testDefaultTimeBasedGenerator()
13281333
{

0 commit comments

Comments
 (0)