]> source.dussan.org Git - gitea.git/commitdiff
gofmt nit: no space around binary + operator
authorKyle Evans <kevans@FreeBSD.org>
Tue, 5 May 2020 21:52:40 +0000 (16:52 -0500)
committerKyle Evans <kevans@FreeBSD.org>
Tue, 5 May 2020 21:52:40 +0000 (16:52 -0500)
services/archiver/archiver_test.go

index 4b6574bfd87bfe67d810a93be5ae00e5963401dd..71a4fb905b6f989a3c4a06aa0f2e243f39887022 100644 (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) {