summaryrefslogtreecommitdiffstats
path: root/integrations/branches_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'integrations/branches_test.go')
-rw-r--r--integrations/branches_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/integrations/branches_test.go b/integrations/branches_test.go
index ea38821d21..ed6a73fdb4 100644
--- a/integrations/branches_test.go
+++ b/integrations/branches_test.go
@@ -15,7 +15,7 @@ import (
)
func TestViewBranches(t *testing.T) {
- prepareTestEnv(t)
+ defer prepareTestEnv(t)()
req := NewRequest(t, "GET", "/user2/repo1/branches")
resp := MakeRequest(t, req, http.StatusOK)
@@ -26,13 +26,13 @@ func TestViewBranches(t *testing.T) {
}
func TestDeleteBranch(t *testing.T) {
- prepareTestEnv(t)
+ defer prepareTestEnv(t)()
deleteBranch(t)
}
func TestUndoDeleteBranch(t *testing.T) {
- prepareTestEnv(t)
+ defer prepareTestEnv(t)()
deleteBranch(t)
htmlDoc, name := branchAction(t, ".undo-button")