Skip to content

Commit

Permalink
Fix comments style
Browse files Browse the repository at this point in the history
  • Loading branch information
jkuradobery committed Sep 9, 2024
1 parent 22631b8 commit 5e0026d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cloud/tasks/storage/storage_ydb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1158,15 +1158,14 @@ func TestStorageYDBListHangingTasks(t *testing.T) {

fixture.createTask("a", taskStatus, time.Now(), -1)
fixture.createTask("a", taskStatus, time.Now(), time.Hour)
// estimate is missed,
// but task duration does not exceed x2 estimate duration
// Estimate is missed, but task duration does not exceed x2 estimate duration
fixture.createTask(
"b",
taskStatus,
time.Now().Add(-719*time.Minute),
hangingTaskTimeout+time.Hour,
)
// estimate is missed but default estimate is not
// Estimate is missed but default estimate is not
oneHourAgo := time.Now().Add(-time.Hour)
fixture.createTask("c", taskStatus, oneHourAgo, time.Minute*15)
}
Expand Down

0 comments on commit 5e0026d

Please sign in to comment.