Skip to content

Commit daeb849

Browse files
committed
review comment changes.
1 parent 4fabd1b commit daeb849

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

athena-jdbc/src/test/java/com/amazonaws/athena/connectors/jdbc/manager/FederationExpressionParserTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public void testParseFunctionCallExpressionWithAllTypes() {
135135
}
136136

137137
@Test(expected = AthenaConnectorException.class)
138-
public void parseFunctionCallExpression_withUnknownArgument_throwsAthenaConnectorException() {
138+
public void testParseFunctionCallExpressionWithUnknownArgument() {
139139
FederationExpression unknown = mock(FederationExpression.class);
140140
FunctionCallExpression functionCall = new FunctionCallExpression(
141141
new ArrowType.Bool(),
@@ -147,7 +147,7 @@ public void parseFunctionCallExpression_withUnknownArgument_throwsAthenaConnecto
147147
}
148148

149149
@Test
150-
public void parseComplexExpressions_withNullOrEmptyConstraints_shouldReturnEmptyList() {
150+
public void testParseComplexExpressionsWithEmptyConstraints() {
151151
Constraints emptyConstraints = createEmptyConstraints();
152152
List<String> result = parser.parseComplexExpressions(List.of(), emptyConstraints, new ArrayList<>());
153153
assertTrue(result.isEmpty());

0 commit comments

Comments
 (0)