Skip to content

Commit

Permalink
chore: set container and account name for load file does not exist te…
Browse files Browse the repository at this point in the history
…st for databricks (#4361)
  • Loading branch information
achettyiitr authored and atzoum committed Feb 12, 2024
1 parent a418e03 commit 59ecda8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion warehouse/integrations/deltalake/deltalake_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,10 @@ func TestIntegration(t *testing.T) {
tableName := "load_file_not_exists_test_table"

loadFiles := []warehouseutils.LoadFile{{
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",
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",
deltaLakeCredentials.AccountName,
deltaLakeCredentials.ContainerName,
),
}}
mockUploader := newMockUploader(t, loadFiles, tableName, schemaInUpload, schemaInWarehouse, warehouseutils.LoadFileTypeCsv, false, false, "2022-12-15T06:53:49.640Z")

Expand Down

0 comments on commit 59ecda8

Please sign in to comment.