From 4aeb279534c9f06f36d0919b540c7cc82b775cd4 Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Mon, 19 Aug 2024 10:25:35 -0500 Subject: [PATCH] e2e: fix module name of an artifact we download (#23843) Because this will definitely never change again, for sure, trust me. --- e2e/artifact/artifact_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/artifact/artifact_test.go b/e2e/artifact/artifact_test.go index 79f7b45f4..0b0c00083 100644 --- a/e2e/artifact/artifact_test.go +++ b/e2e/artifact/artifact_test.go @@ -41,7 +41,7 @@ func artifactCheckLogContents(t *testing.T, nomad *api.Client, group, task strin t.Run(task, func(t *testing.T) { logs, err := e2eutil.AllocTaskLogs(allocID, task, e2eutil.LogsStdOut) must.NoError(t, err) - must.StrContains(t, logs, "module github.com/hashicorp/go-set/v2") + must.StrContains(t, logs, "module github.com/hashicorp/go-set/v3") }) }