Browse Source

gofmt nit: no space around binary + operator

pull/11296/head
Kyle Evans 5 years ago
parent
commit
5434d6eaf8
  1. 2
      services/archiver/archiver_test.go

2
services/archiver/archiver_test.go

@ -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) {

Loading…
Cancel
Save