Refactor time durations (#58484)

This change uses `time.Second` in place of `1000 * time.Millisecond` and `time.Minute` in place of `60*time.Second`.
This commit is contained in:
Sasha Melentyev
2022-11-22 10:09:15 +03:00
committed by GitHub
parent 6ac43c9cb4
commit c02003af3c
18 changed files with 43 additions and 43 deletions

View File

@@ -2170,7 +2170,7 @@ func printAllAnnotations(annos map[int64]annotations.Item) string {
func TestStaleResultsHandler(t *testing.T) {
evaluationTime := time.Now()
interval := 60 * time.Second
interval := time.Minute
ctx := context.Background()
_, dbstore := tests.SetupTestEnv(t, 1)