Skip to content

Commit 1ff9432

Browse files
authored
chore: set container and account name for load file does not exist test for databricks (#4361)
1 parent 7e47ee9 commit 1ff9432

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

warehouse/integrations/deltalake/deltalake_test.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,10 @@ func TestIntegration(t *testing.T) {
728728
tableName := "load_file_not_exists_test_table"
729729

730730
loadFiles := []warehouseutils.LoadFile{{
731-
Location: "https://account.blob.core.windows.net/container/rudder-warehouse-load-objects/load_file_not_exists_test_table/test_source_id/a01af26e-4548-49ff-a895-258829cc1a83-load_file_not_exists_test_table/load.csv.gz",
731+
Location: fmt.Sprintf("https://%s.blob.core.windows.net/%s/rudder-warehouse-load-objects/load_file_not_exists_test_table/test_source_id/a01af26e-4548-49ff-a895-258829cc1a83-load_file_not_exists_test_table/load.csv.gz",
732+
deltaLakeCredentials.AccountName,
733+
deltaLakeCredentials.ContainerName,
734+
),
732735
}}
733736
mockUploader := newMockUploader(t, loadFiles, tableName, schemaInUpload, schemaInWarehouse, warehouseutils.LoadFileTypeCsv, false, false, "2022-12-15T06:53:49.640Z")
734737

0 commit comments

Comments
 (0)