Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2017-09-22 15:52:48 +0300
committerNick Thomas <nick@gitlab.com>2017-09-22 18:14:59 +0300
commit4ee1f7022ce38ebeef6a1e8830b7b3a34c027ca9 (patch)
tree2429d65ca0afaa268f4d3a43edeba1dd068b8c22 /logging_test.go
parent550eecbcdc65ade834311629f5cac9d0d2387e62 (diff)
Fix Go imports
Diffstat (limited to 'logging_test.go')
-rw-r--r--logging_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/logging_test.go b/logging_test.go
index e6551047..bc557a71 100644
--- a/logging_test.go
+++ b/logging_test.go
@@ -2,9 +2,10 @@ package main
import (
"fmt"
- "github.com/stretchr/testify/assert"
"net/http"
"testing"
+
+ "github.com/stretchr/testify/assert"
)
func testLogWithStatus(ww http.ResponseWriter, r *http.Request) {