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 9c61c1ce39
commit 147d60e528
1 changed files with 1 additions and 1 deletions

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);
}