File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1294,7 +1294,7 @@ def test_get_tables_calls_client_and_handle_execute_response(
1294
1294
catalog_name = "catalog_pattern" ,
1295
1295
schema_name = "schema_pattern" ,
1296
1296
table_name = "table_pattern" ,
1297
- table_types = ["VIEW " , "TABLE " ],
1297
+ table_types = ["type1 " , "type2 " ],
1298
1298
)
1299
1299
# Verify the result is a ResultSet
1300
1300
self .assertEqual (result , mock_result_set .return_value )
@@ -1306,7 +1306,7 @@ def test_get_tables_calls_client_and_handle_execute_response(
1306
1306
self .assertEqual (req .catalogName , "catalog_pattern" )
1307
1307
self .assertEqual (req .schemaName , "schema_pattern" )
1308
1308
self .assertEqual (req .tableName , "table_pattern" )
1309
- self .assertEqual (req .tableTypes , ["VIEW " , "TABLE " ])
1309
+ self .assertEqual (req .tableTypes , ["type1 " , "type2 " ])
1310
1310
# Check response handling
1311
1311
thrift_backend ._handle_execute_response .assert_called_with (
1312
1312
response , cursor_mock
You can’t perform that action at this time.
0 commit comments