summaryrefslogtreecommitdiffstats
path: root/model/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/client.go')
-rw-r--r--model/client.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/model/client.go b/model/client.go
index 317374d36..e648ca279 100644
--- a/model/client.go
+++ b/model/client.go
@@ -14,8 +14,6 @@ import (
"strconv"
"strings"
"time"
-
- l4g "github.com/alecthomas/log4go"
)
var UsedApiV3 *int32 = new(int32)
@@ -210,7 +208,7 @@ func getCookie(name string, resp *http.Response) *http.Cookie {
// Must is a convenience function used for testing.
func (c *Client) Must(result *Result, err *AppError) *Result {
if err != nil {
- l4g.Close()
+
time.Sleep(time.Second)
panic(err)
}
@@ -221,7 +219,7 @@ func (c *Client) Must(result *Result, err *AppError) *Result {
// MustGeneric is a convenience function used for testing.
func (c *Client) MustGeneric(result interface{}, err *AppError) interface{} {
if err != nil {
- l4g.Close()
+
time.Sleep(time.Second)
panic(err)
}