From ecfe545c632f98a9d02238028cc0174101efea07 Mon Sep 17 00:00:00 2001 From: Pieter Noordhuis Date: Mon, 13 Jan 2025 15:00:59 +0100 Subject: [PATCH] Comment --- bundle/config/mutator/translate_paths_artifacts_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundle/config/mutator/translate_paths_artifacts_test.go b/bundle/config/mutator/translate_paths_artifacts_test.go index a3e4b183f..fb402b488 100644 --- a/bundle/config/mutator/translate_paths_artifacts_test.go +++ b/bundle/config/mutator/translate_paths_artifacts_test.go @@ -45,7 +45,7 @@ func TestTranslatePathsArtifacts_InsideSyncRoot(t *testing.T) { diags := bundle.Apply(context.Background(), b, mutator.TranslatePaths()) require.NoError(t, diags.Error()) - // Assert that the artifact path has been converted to a path relative to the sync root. + // Assert that the artifact path has been converted to a local absolute path. assert.Equal(t, lib, b.Config.Artifacts["my_artifact"].Path) } @@ -78,6 +78,6 @@ func TestTranslatePathsArtifacts_OutsideSyncRoot(t *testing.T) { diags := bundle.Apply(context.Background(), b, mutator.TranslatePaths()) require.NoError(t, diags.Error()) - // Assert that the artifact path has been converted to a path relative to the sync root. + // Assert that the artifact path has been converted to a local absolute path. assert.Equal(t, lib, b.Config.Artifacts["my_artifact"].Path) }