Skip to content

Commit 4883aff

Browse files
correct patch module path in cloud fetch queue tests
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent a4447a1 commit 4883aff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_cloud_fetch_queue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def test_create_next_table_no_download(self, mock_get_next_downloaded_file):
9898
assert queue._create_next_table() is None
9999
mock_get_next_downloaded_file.assert_called_with(0)
100100

101-
@patch("databricks.sql.cloud_fetch_queue.create_arrow_table_from_arrow_file")
101+
@patch("databricks.sql.utils.create_arrow_table_from_arrow_file")
102102
@patch(
103103
"databricks.sql.cloudfetch.download_manager.ResultFileDownloadManager.get_next_downloaded_file",
104104
return_value=MagicMock(file_bytes=b"1234567890", row_count=4),

0 commit comments

Comments
 (0)