Skip to content

Commit 3e98b07

Browse files
committed
chore(repo): Linting and fixing
1 parent 89da702 commit 3e98b07

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

internal/server/postgres/dataserverimpl_test.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1475,7 +1475,11 @@ func BenchmarkPostgresClient(b *testing.B) {
14751475
// There is a forecast value every 30 minutes, and the window is 84 hours long
14761476
// But the forecast made at the pivot time is the latest one, and that is only
14771477
// tt.ForecastLengthHours long
1478-
require.Equal(b, (48+tt.ForecastLengthHours)*60/tt.PgvResolutionMins, len(resp.Values))
1478+
require.Equal(
1479+
b,
1480+
(48+tt.ForecastLengthHours)*60/tt.PgvResolutionMins,
1481+
len(resp.Values),
1482+
)
14791483
}
14801484
})
14811485
b.Run(fmt.Sprintf("%d/GetForecastAtTimestamp", output.NumPgvs), func(b *testing.B) {

0 commit comments

Comments
 (0)