Skip to content

Commit

Permalink
services/wiki: Close() after error handling (#27129) (#27137)
Browse files Browse the repository at this point in the history
Backport #27129 by @earl-warren

Refs: https://codeberg.org/forgejo/forgejo/pulls/1385

Signed-off-by: Lars Lehtonen <[email protected]>
(cherry picked from commit 589e7d3)

Co-authored-by: Earl Warren <[email protected]>
Co-authored-by: Lars Lehtonen <[email protected]>
  • Loading branch information
3 people authored Sep 19, 2023
1 parent b139234 commit 882e465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/wiki/wiki_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,8 @@ func TestPrepareWikiFileName(t *testing.T) {
unittest.PrepareTestEnv(t)
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 1})
gitRepo, err := git.OpenRepository(git.DefaultContext, repo.WikiPath())
defer gitRepo.Close()
assert.NoError(t, err)
defer gitRepo.Close()

tests := []struct {
name string
Expand Down Expand Up @@ -301,8 +301,8 @@ func TestPrepareWikiFileName_FirstPage(t *testing.T) {
assert.NoError(t, err)

gitRepo, err := git.OpenRepository(git.DefaultContext, tmpDir)
defer gitRepo.Close()
assert.NoError(t, err)
defer gitRepo.Close()

existence, newWikiPath, err := prepareGitPath(gitRepo, "Home")
assert.False(t, existence)
Expand Down

0 comments on commit 882e465

Please sign in to comment.