From 54fedf220e7c315e441e2585ecdf45a68dfa0945 Mon Sep 17 00:00:00 2001 From: Levko Burburas Date: Fri, 10 Jan 2025 16:40:32 +0200 Subject: [PATCH] fix: test --- internal/experiment/experiment_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/experiment/experiment_test.go b/internal/experiment/experiment_test.go index 77cc85ae61..58df87b9f4 100644 --- a/internal/experiment/experiment_test.go +++ b/internal/experiment/experiment_test.go @@ -50,7 +50,7 @@ func TestValidateExperiments(t *testing.T) { }, }, experimentNames: []string{experiment.Symlinks}, - expectedWarning: "The following experiment(s) are already completed: symlinks. Please remove any completed experiments, as setting them no longer does anything. For a list of all ongoing experiments, and the outcomes of previous experiments, see https://terragrunt.gruntwork.io/docs/reference/experiment-mode", + expectedWarning: "The following experiment(s) are already completed: symlinks. Please remove any completed experiments, as setting them no longer does anything. For a list of all ongoing experiments, and the outcomes of previous experiments, see https://terragrunt.gruntwork.io/docs/reference/experiments", expectedError: nil, }, { @@ -62,7 +62,7 @@ func TestValidateExperiments(t *testing.T) { }, }, experimentNames: []string{"invalid", experiment.Symlinks}, - expectedWarning: "The following experiment(s) are already completed: symlinks. Please remove any completed experiments, as setting them no longer does anything. For a list of all ongoing experiments, and the outcomes of previous experiments, see https://terragrunt.gruntwork.io/docs/reference/experiment-mode", + expectedWarning: "The following experiment(s) are already completed: symlinks. Please remove any completed experiments, as setting them no longer does anything. For a list of all ongoing experiments, and the outcomes of previous experiments, see https://terragrunt.gruntwork.io/docs/reference/experiments", expectedError: experiment.InvalidExperimentsError{ ExperimentNames: []string{"invalid"}, },