diff options
author | zeripath <art27@cantab.net> | 2019-11-26 00:21:37 +0100 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2019-11-26 00:21:37 +0100 |
commit | 055f6d229672524e3933940f95aa28939d94961a (patch) | |
tree | 72d1d427ce694517b70b6b751e35fdf6d5874428 /integrations/download_test.go | |
parent | Fix #9151 - smtp logger configuration sendTos should be an array (#9154) (diff) | |
download | forgejo-055f6d229672524e3933940f95aa28939d94961a.tar.xz forgejo-055f6d229672524e3933940f95aa28939d94961a.zip |
Fix "data race" in testlogger (#9159)
* Fix data race in testlogger
* Update git_helper_for_declarative_test.go
Diffstat (limited to 'integrations/download_test.go')
-rw-r--r-- | integrations/download_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integrations/download_test.go b/integrations/download_test.go index 3fd858887e..6bc5e5a9af 100644 --- a/integrations/download_test.go +++ b/integrations/download_test.go @@ -12,7 +12,7 @@ import ( ) func TestDownloadByID(t *testing.T) { - prepareTestEnv(t) + defer prepareTestEnv(t)() session := loginUser(t, "user2") @@ -24,7 +24,7 @@ func TestDownloadByID(t *testing.T) { } func TestDownloadByIDMedia(t *testing.T) { - prepareTestEnv(t) + defer prepareTestEnv(t)() session := loginUser(t, "user2") |