chore: fix flake in TestExecutorAutostopTemplateDisabled (#11096)

This commit is contained in:
Jon Ayers
2023-12-08 09:02:54 +00:00
committed by GitHub
parent b4ca1d6579
commit 02696f2df9
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -817,7 +817,7 @@ func TestExecutorAutostopTemplateDisabled(t *testing.T) {
// When: the autobuild executor ticks after the workspace setting, but before the template setting:
go func() {
tickCh <- workspace.LatestBuild.CreatedAt.Add(45 * time.Minute)
tickCh <- workspace.LatestBuild.Job.CompletedAt.Add(45 * time.Minute)
}()
// Then: nothing should happen
@@ -827,7 +827,7 @@ func TestExecutorAutostopTemplateDisabled(t *testing.T) {
// When: the autobuild executor ticks after the template setting:
go func() {
tickCh <- workspace.LatestBuild.CreatedAt.Add(61 * time.Minute)
tickCh <- workspace.LatestBuild.Job.CompletedAt.Add(61 * time.Minute)
close(tickCh)
}()