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) }