From 09ec2783df5804f22740a86df65199059bea3828 Mon Sep 17 00:00:00 2001 From: iurysalino Date: Fri, 11 Mar 2022 18:24:54 -0300 Subject: [PATCH] Changed test names in to `ArrowFlightJdbcVarCharVectorAccessorTest` --- .../impl/text/ArrowFlightJdbcVarCharVectorAccessorTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/flight/flight-jdbc-driver/src/test/java/org/apache/arrow/driver/jdbc/accessor/impl/text/ArrowFlightJdbcVarCharVectorAccessorTest.java b/java/flight/flight-jdbc-driver/src/test/java/org/apache/arrow/driver/jdbc/accessor/impl/text/ArrowFlightJdbcVarCharVectorAccessorTest.java index 7a516be7ef9c1..2ef2b1cb4e785 100644 --- a/java/flight/flight-jdbc-driver/src/test/java/org/apache/arrow/driver/jdbc/accessor/impl/text/ArrowFlightJdbcVarCharVectorAccessorTest.java +++ b/java/flight/flight-jdbc-driver/src/test/java/org/apache/arrow/driver/jdbc/accessor/impl/text/ArrowFlightJdbcVarCharVectorAccessorTest.java @@ -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("")); }