Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ linters:
- unconvert
- unparam
- unused
# TODO(#6202): Re-enable 'wastedassign' linter
- wastedassign
linters-settings:
errcheck:
exclude-functions:
Expand Down
2 changes: 1 addition & 1 deletion crl/updater/updater_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,6 @@ func TestGetChunkAtTime(t *testing.T) {
// the time twice, since the whole point of "very far in the future" is that
// it isn't representable by a time.Duration.
atTime = anchorTime().Add(200 * 365 * 24 * time.Hour).Add(200 * 365 * 24 * time.Hour)
c, err = GetChunkAtTime(shardWidth, numShards, atTime)
_, err = GetChunkAtTime(shardWidth, numShards, atTime)
test.AssertError(t, err, "getting far-future chunk")
}