all: gofmt -s
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 7 Aug 2017 18:03:15 +0000 (20:03 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 7 Aug 2017 18:03:15 +0000 (20:03 +0200)
hugolib/site_benchmark_test.go
media/mediaType_test.go
output/outputFormat_test.go
tpl/collections/index_test.go

index d23271af77ceeb77b7048668ab3ccc5a4ac13106..123e69b30657781f304827fc137da46a489432ee 100644 (file)
@@ -103,7 +103,7 @@ func doBenchMarkSiteBuilding(conf siteBuildingBenchmarkConfig, b *testing.B) {
 
                        // Try to help the GC
                        sites[0] = nil
-                       sites = sites[1:len(sites)]
+                       sites = sites[1:]
                }
        })
 }
index a6b18d1d67a69a05b49e56f2841e48224f9dca09..ffef07b80aac329e339c37c83b07281362b208e5 100644 (file)
@@ -89,7 +89,7 @@ func TestDecodeTypes(t *testing.T) {
                {
                        "Redefine JSON",
                        []map[string]interface{}{
-                               map[string]interface{}{
+                               {
                                        "application/json": map[string]interface{}{
                                                "suffix": "jsn"}}},
                        false,
@@ -102,7 +102,7 @@ func TestDecodeTypes(t *testing.T) {
                {
                        "Add custom media type",
                        []map[string]interface{}{
-                               map[string]interface{}{
+                               {
                                        "text/hugo": map[string]interface{}{
                                                "suffix": "hgo"}}},
                        false,
@@ -119,7 +119,7 @@ func TestDecodeTypes(t *testing.T) {
                {
                        "Add media type invalid key",
                        []map[string]interface{}{
-                               map[string]interface{}{
+                               {
                                        "text/hugo+hgo": map[string]interface{}{}}},
                        true,
                        func(t *testing.T, name string, tt Types) {
index 18b84a0fade2826893228c829960f4aed634bc02..9033de869c6347f74c34f17bafe7bd927607d339 100644 (file)
@@ -145,7 +145,7 @@ func TestDecodeFormats(t *testing.T) {
                {
                        "Redefine JSON",
                        []map[string]interface{}{
-                               map[string]interface{}{
+                               {
                                        "JsON": map[string]interface{}{
                                                "baseName":    "myindex",
                                                "isPlainText": "false"}}},
@@ -161,7 +161,7 @@ func TestDecodeFormats(t *testing.T) {
                {
                        "Add XML format with string as mediatype",
                        []map[string]interface{}{
-                               map[string]interface{}{
+                               {
                                        "MYXMLFORMAT": map[string]interface{}{
                                                "baseName":  "myxml",
                                                "mediaType": "application/xml",
@@ -182,7 +182,7 @@ func TestDecodeFormats(t *testing.T) {
                {
                        "Add format unknown mediatype",
                        []map[string]interface{}{
-                               map[string]interface{}{
+                               {
                                        "MYINVALID": map[string]interface{}{
                                                "baseName":  "mymy",
                                                "mediaType": "application/hugo",
@@ -194,12 +194,12 @@ func TestDecodeFormats(t *testing.T) {
                {
                        "Add and redefine XML format",
                        []map[string]interface{}{
-                               map[string]interface{}{
+                               {
                                        "MYOTHERXMLFORMAT": map[string]interface{}{
                                                "baseName":  "myotherxml",
                                                "mediaType": media.XMLType,
                                        }},
-                               map[string]interface{}{
+                               {
                                        "MYOTHERXMLFORMAT": map[string]interface{}{
                                                "baseName": "myredefined",
                                        }},
index b9261735ffe9c30eb442f80dc6dd8c5502777ac8..bd752d666ae5511027ab1d01bbd6c6e72696cbf4 100644 (file)
@@ -36,7 +36,7 @@ func TestIndex(t *testing.T) {
                {[]int{0, 1}, []interface{}{0}, 0, false},
                {[]int{0, 1}, []interface{}{9}, nil, false}, // index out of range
                {[]uint{0, 1}, nil, []uint{0, 1}, false},
-               {[][]int{[]int{1, 2}, []int{3, 4}}, []interface{}{0, 0}, 1, false},
+               {[][]int{{1, 2}, {3, 4}}, []interface{}{0, 0}, 1, false},
                {map[int]int{1: 10, 2: 20}, []interface{}{1}, 10, false},
                {map[int]int{1: 10, 2: 20}, []interface{}{0}, 0, false},
                // errors