Преглед изворни кода

style: format code with Go fmt and Gofumpt

This commit fixes the style issues introduced in 12efef4 according to the output
from Go fmt and Gofumpt.

Details: https://github.com/gogs/gogs/pull/7538
deepsource-autofix[bot] пре 1 година
родитељ
комит
54d5e4c399
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      internal/db/organizations_test.go

+ 1 - 1
internal/db/organizations_test.go

@@ -561,7 +561,7 @@ func orgsHasMember(t *testing.T, db *organizations) {
 
 	err := db.AddMember(ctx, 1, 1)
 	require.NoError(t, err)
-	
+
 	got, _ = db.HasMember(ctx, 1, 1)
 	assert.True(t, got)
 }