Skip to content

Commit 2f0b15b

Browse files
committed
remove unnecessary static import
1 parent 40d9bc2 commit 2f0b15b

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/test/java/org/jreliability/bdd/jbdd/JBDDOperatorTest.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
package org.jreliability.bdd.jbdd;
1717

18-
import static org.junit.jupiter.api.Assertions.assertThrows;
19-
2018
import java.util.Iterator;
2119

2220
import org.jreliability.bdd.AbstractBDDOperatorTest;
@@ -108,6 +106,6 @@ public void testAllSatIteratorRemove() {
108106

109107
Assertions.assertTrue(it.hasNext());
110108
it.next();
111-
assertThrows(UnsupportedOperationException.class, () -> it.remove());
109+
Assertions.assertThrows(UnsupportedOperationException.class, () -> it.remove());
112110
}
113111
}

0 commit comments

Comments
 (0)