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:
authorMarin Jankovski <maxlazio@gmail.com>2016-04-07 00:15:48 +0300
committerMarin Jankovski <maxlazio@gmail.com>2016-04-07 00:15:48 +0300
commit5718c3d05ff94d2ebe020eeac02678926b2fe000 (patch)
tree1a4aca528f7cc1fa026f28daab62f9d7dcd996c9
parent3a6c72049daa4a8e5403d6a01754372d0900f78b (diff)
Go fmt.
-rw-r--r--404.go2
-rw-r--r--domain_test.go6
2 files changed, 4 insertions, 4 deletions
diff --git a/404.go b/404.go
index 3634ddf0..5bcced47 100644
--- a/404.go
+++ b/404.go
@@ -1,8 +1,8 @@
package main
import (
- "net/http"
"fmt"
+ "net/http"
)
const predefined404 = `
diff --git a/domain_test.go b/domain_test.go
index 56e032a4..f10009c3 100644
--- a/domain_test.go
+++ b/domain_test.go
@@ -2,12 +2,12 @@ package main
import (
"github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+ "mime"
"net/http"
+ "net/http/httptest"
"net/url"
"testing"
- "net/http/httptest"
- "github.com/stretchr/testify/require"
- "mime"
)
func TestGroupServeHTTP(t *testing.T) {