diff --git a/bundle/tests/relative_path_with_includes_test.go b/bundle/tests/relative_path_with_includes_test.go index a61cd8383..8efac0039 100644 --- a/bundle/tests/relative_path_with_includes_test.go +++ b/bundle/tests/relative_path_with_includes_test.go @@ -8,7 +8,6 @@ import ( "github.com/databricks/cli/bundle" "github.com/databricks/cli/bundle/config/mutator" "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" ) func TestRelativePathsWithIncludes(t *testing.T) { @@ -18,12 +17,8 @@ func TestRelativePathsWithIncludes(t *testing.T) { diags := bundle.Apply(context.Background(), b, m) assert.NoError(t, diags.Error()) - relA, err := filepath.Rel(b.SyncRootPath, b.Config.Artifacts["test_a"].Path) - require.NoError(t, err) - assert.Equal(t, "artifact_a", relA) - relB, err := filepath.Rel(b.SyncRootPath, b.Config.Artifacts["test_b"].Path) - require.NoError(t, err) - assert.Equal(t, filepath.Join("subfolder", "artifact_b"), relB) + assert.Equal(t, filepath.Join(b.SyncRootPath, "artifact_a"), b.Config.Artifacts["test_a"].Path) + assert.Equal(t, filepath.Join(b.SyncRootPath, "subfolder", "artifact_b"), b.Config.Artifacts["test_b"].Path) assert.ElementsMatch( t,