Skip to content

Commit

Permalink
Changed test names in to ArrowFlightJdbcVarCharVectorAccessorTest
Browse files Browse the repository at this point in the history
  • Loading branch information
iurysalino authored and vfraga committed Mar 29, 2022
1 parent 4afb631 commit 09ec278
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -603,12 +603,12 @@ private void assertGetBooleanForSQLException(Text value) {
}

@Test
public void testShouldGetBooleanReturnTrueForNonEmpty() {
public void testShouldGetBooleanThrowForInvalidValue() {
assertGetBooleanForSQLException(new Text("anything"));
}

@Test
public void testShouldGetBooleanReturnFalseForEmpty() throws Exception {
public void testShouldGetBooleanThrowForEmpty() throws Exception {
assertGetBooleanForSQLException(new Text(""));
}

Expand Down

0 comments on commit 09ec278

Please sign in to comment.