JAVA-11422 Update article - A Guide To Java Regular Expressions API

This commit is contained in:
anuragkumawat
2022-05-22 12:46:31 +05:30
parent d1e0b033c3
commit bcf415dcd9

View File

@@ -104,7 +104,7 @@ public class RegexUnitTest {
@Test
public void givenNumberRange_whenMatchesAccurately_thenCorrect2() {
int matches = runTest("[30-35]", "Two Uppercase alphabets 34 overall");
int matches = runTest("3[0-5]", "Two Uppercase alphabets 34 overall");
assertTrue(matches > 0);
assertEquals(matches, 1);
}