Skip to content

Commit 966a15c

Browse files
committed
Use static imports only for JUnit
1 parent c6fe5cb commit 966a15c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/net/ntp/TestTimeInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ void testEquals() {
8787
assertEquals(info, other); // fails
8888
assertEquals(info.hashCode(), other.hashCode());
8989
other.addComment("another comment");
90-
// Assertions.assertFalse(info.equals(other)); // comments not used for equality
90+
// assertFalse(info.equals(other)); // comments not used for equality
9191

9292
final TimeInfo another = new TimeInfo(packet, returnTime, new ArrayList<>());
9393
assertEquals(info, another);

0 commit comments

Comments
 (0)