diff options
author | zeripath <art27@cantab.net> | 2019-11-25 23:21:37 +0000 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2019-11-26 01:21:37 +0200 |
commit | 055f6d229672524e3933940f95aa28939d94961a (patch) | |
tree | 72d1d427ce694517b70b6b751e35fdf6d5874428 /integrations/links_test.go | |
parent | f5bd0884d2adea8ef7ba1bbd9dacb240d7c6b0f7 (diff) | |
download | gitea-055f6d229672524e3933940f95aa28939d94961a.tar.gz gitea-055f6d229672524e3933940f95aa28939d94961a.zip |
Fix "data race" in testlogger (#9159)
* Fix data race in testlogger
* Update git_helper_for_declarative_test.go
Diffstat (limited to 'integrations/links_test.go')
-rw-r--r-- | integrations/links_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/integrations/links_test.go b/integrations/links_test.go index 468c8a0f21..97b390ed12 100644 --- a/integrations/links_test.go +++ b/integrations/links_test.go @@ -18,7 +18,7 @@ import ( ) func TestLinksNoLogin(t *testing.T) { - prepareTestEnv(t) + defer prepareTestEnv(t)() var links = []string{ "/explore/repos", @@ -44,7 +44,7 @@ func TestLinksNoLogin(t *testing.T) { } func TestRedirectsNoLogin(t *testing.T) { - prepareTestEnv(t) + defer prepareTestEnv(t)() var redirects = map[string]string{ "/user2/repo1/commits/master": "/user2/repo1/commits/branch/master", @@ -144,7 +144,7 @@ func testLinksAsUser(userName string, t *testing.T) { } func TestLinksLogin(t *testing.T) { - prepareTestEnv(t) + defer prepareTestEnv(t)() testLinksAsUser("user2", t) } |