gofmt nit: no space around binary + operator

This commit is contained in:
Kyle Evans 2020-05-05 16:52:40 -05:00
parent 6785d390f7
commit 5434d6eaf8

View file

@ -56,7 +56,7 @@ func releaseOneEntry(t *testing.T, inFlight []*ArchiveRequest) {
assert.NotEqual(t, nowQueued, numQueued)
// Also make sure that we released only one.
assert.Equal(t, nowQueued, numQueued + 1)
assert.Equal(t, nowQueued, numQueued+1)
}
func TestArchive_Basic(t *testing.T) {