Skip to content

Commit 73bc282

Browse files
remove outdated arrow_schema_bytes return
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 2f6ec19 commit 73bc282

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/unit/test_thrift_backend.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@ def test_handle_execute_response_can_handle_without_direct_results(
884884
)
885885
(
886886
execute_response,
887-
arrow_schema_bytes,
887+
_,
888888
) = thrift_backend._handle_execute_response(execute_resp, Mock())
889889
self.assertEqual(
890890
execute_response.status,
@@ -990,9 +990,7 @@ def test_fall_back_to_hive_schema_if_no_arrow_schema(self, tcli_service_class):
990990
)
991991
)
992992
thrift_backend = self._make_fake_thrift_backend()
993-
execute_response, arrow_schema_bytes = thrift_backend._handle_execute_response(
994-
t_execute_resp, Mock()
995-
)
993+
_, _ = thrift_backend._handle_execute_response(t_execute_resp, Mock())
996994

997995
self.assertEqual(
998996
hive_schema_mock,

0 commit comments

Comments
 (0)