We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a65083 commit 5d42bfeCopy full SHA for 5d42bfe
src/test/java/org/owasp/esapi/reference/regex/AbstractPatternTest.java
@@ -13,9 +13,10 @@
13
*/
14
package org.owasp.esapi.reference.regex;
15
16
+import static org.junit.Assert.assertEquals;
17
+
18
import java.util.regex.Pattern;
19
-import org.junit.Assert;
20
import org.junit.Test;
21
import org.junit.runner.RunWith;
22
import org.junit.runners.Parameterized;
@@ -63,7 +64,7 @@ public AbstractPatternTest(PatternTestTuple tuple) {
63
64
65
@Test
66
public void checkPatternMatches() {
- Assert.assertEquals(shouldMatch, pattern.matcher(input).matches());
67
+ assertEquals(shouldMatch, pattern.matcher(input).matches());
68
}
69
70
0 commit comments