We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40d9bc2 commit 2f0b15bCopy full SHA for 2f0b15b
1 file changed
src/test/java/org/jreliability/bdd/jbdd/JBDDOperatorTest.java
@@ -15,8 +15,6 @@
15
16
package org.jreliability.bdd.jbdd;
17
18
-import static org.junit.jupiter.api.Assertions.assertThrows;
19
-
20
import java.util.Iterator;
21
22
import org.jreliability.bdd.AbstractBDDOperatorTest;
@@ -108,6 +106,6 @@ public void testAllSatIteratorRemove() {
108
106
109
107
Assertions.assertTrue(it.hasNext());
110
it.next();
111
- assertThrows(UnsupportedOperationException.class, () -> it.remove());
+ Assertions.assertThrows(UnsupportedOperationException.class, () -> it.remove());
112
}
113
0 commit comments