浏览代码

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