Skip to content

Commit 2b5647b

Browse files
committed
test method names changed
1 parent fa21512 commit 2b5647b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/net/sf/jsqlparser/statement/grant/GrantTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public void testGrantPrivileges() throws JSQLParserException {
5656
}
5757

5858
@Test
59-
public void testDropRestrictIssue510() throws JSQLParserException {
59+
public void testGrantRole() throws JSQLParserException {
6060
String statement = "GRANT role1 TO u, u2";
6161
Grant grant = (Grant) parserManager.parse(new StringReader(statement));
6262

@@ -72,12 +72,12 @@ public void testDropRestrictIssue510() throws JSQLParserException {
7272
}
7373

7474
@Test
75-
public void testDropViewIssue545() throws JSQLParserException {
75+
public void testGrantQueryWithPrivileges() throws JSQLParserException {
7676
assertSqlCanBeParsedAndDeparsed("GRANT SELECT, INSERT, UPDATE, DELETE ON T1 TO ADMIN_ROLE");
7777
}
7878

7979
@Test
80-
public void testDropSchemaIssue8556() throws JSQLParserException {
80+
public void testGrantQueryWithRole() throws JSQLParserException {
8181
assertSqlCanBeParsedAndDeparsed("GRANT ROLE_1 TO TEST_ROLE_1, TEST_ROLE_2");
8282
}
8383
}

0 commit comments

Comments
 (0)