From 737903b773d9859e8f2da6ef9a47cc5c6797fc47 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Thu, 2 May 2024 16:41:31 +0200 Subject: [PATCH] fix test --- bundle/config/root_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/config/root_test.go b/bundle/config/root_test.go index 71440e95..6b2b2ba0 100644 --- a/bundle/config/root_test.go +++ b/bundle/config/root_test.go @@ -38,7 +38,7 @@ func TestDuplicateIdOnLoadReturnsErrorForJobAndPipeline(t *testing.T) { func TestDuplicateIdOnLoadReturnsErrorForJobsAndExperiments(t *testing.T) { _, diags := Load("./testdata/duplicate_resource_names_in_root_job_and_experiment/databricks.yml") - assert.ErrorContains(t, diags.Error(), "multiple resources named foo (job at ./testdata/duplicate_resource_names_in_root_jobs_and_experiments/databricks.yml:10:7, experiment at ./testdata/duplicate_resource_names_in_root_jobs_and_experiments/databricks.yml:18:7)") + assert.ErrorContains(t, diags.Error(), "multiple resources named foo (job at ./testdata/duplicate_resource_names_in_root_job_and_experiment/databricks.yml:10:7, experiment at ./testdata/duplicate_resource_names_in_root_job_and_experiment/databricks.yml:18:7)") } func TestDuplicateIdOnMergeReturnsErrorForJobAndPipeline(t *testing.T) {