We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89da702 commit 3e98b07Copy full SHA for 3e98b07
internal/server/postgres/dataserverimpl_test.go
@@ -1475,7 +1475,11 @@ func BenchmarkPostgresClient(b *testing.B) {
1475
// There is a forecast value every 30 minutes, and the window is 84 hours long
1476
// But the forecast made at the pivot time is the latest one, and that is only
1477
// tt.ForecastLengthHours long
1478
- require.Equal(b, (48+tt.ForecastLengthHours)*60/tt.PgvResolutionMins, len(resp.Values))
+ require.Equal(
1479
+ b,
1480
+ (48+tt.ForecastLengthHours)*60/tt.PgvResolutionMins,
1481
+ len(resp.Values),
1482
+ )
1483
}
1484
})
1485
b.Run(fmt.Sprintf("%d/GetForecastAtTimestamp", output.NumPgvs), func(b *testing.B) {
0 commit comments