1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-23 10:48:37 +00:00

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