Skip to content

Commit

Permalink
refactor: Rename test methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Steinhauser committed Jul 23, 2024
1 parent 7db7578 commit 6cdfe31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2845,7 +2845,7 @@ public void testRlike() throws JSQLParserException {
}

@Test
public void testRegexplike() throws JSQLParserException {
public void testRegexpLike() throws JSQLParserException {
assertSqlCanBeParsedAndDeparsed(
"SELECT * FROM mytable WHERE first_name REGEXP_LIKE '^Ste(v|ph)en$'");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public void testRlike() throws JSQLParserException {
}

@Test
public void testRegexplike() throws JSQLParserException {
public void testRegexpLike() throws JSQLParserException {
validateNoErrors("SELECT * FROM mytable WHERE first_name REGEXP_LIKE '^Ste(v|ph)en$'", 1,
EXPRESSIONS);
}
Expand Down

0 comments on commit 6cdfe31

Please sign in to comment.