e2e: fix module name of an artifact we download (#23843)

Because this will definitely never change again, for sure, trust me.
This commit is contained in:
Seth Hoenig
2024-08-19 10:25:35 -05:00
committed by GitHub
parent fbd8d62955
commit 4aeb279534

View File

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