ref: 4b54fb07018d5ed66ef82b6a53462e1b15c85d86
parent: 40d7d3baa8d83ad71873c85cf08286e1aaea6174
author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
date: Mon Aug 7 16:03:15 EDT 2017
all: gofmt -s
--- a/hugolib/site_benchmark_test.go
+++ b/hugolib/site_benchmark_test.go
@@ -103,7 +103,7 @@
// Try to help the GC
sites[0] = nil
- sites = sites[1:len(sites)]
+ sites = sites[1:]
}
})
}
--- a/media/mediaType_test.go
+++ b/media/mediaType_test.go
@@ -89,7 +89,7 @@
{"Redefine JSON",
[]map[string]interface{}{- map[string]interface{}{+ { "application/json": map[string]interface{}{"suffix": "jsn"}}},
false,
@@ -102,7 +102,7 @@
{"Add custom media type",
[]map[string]interface{}{- map[string]interface{}{+ { "text/hugo": map[string]interface{}{"suffix": "hgo"}}},
false,
@@ -119,7 +119,7 @@
{"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) {--- a/output/outputFormat_test.go
+++ b/output/outputFormat_test.go
@@ -145,7 +145,7 @@
{"Redefine JSON",
[]map[string]interface{}{- map[string]interface{}{+ { "JsON": map[string]interface{}{"baseName": "myindex",
"isPlainText": "false"}}},
@@ -161,7 +161,7 @@
{"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 @@
{"Add format unknown mediatype",
[]map[string]interface{}{- map[string]interface{}{+ { "MYINVALID": map[string]interface{}{"baseName": "mymy",
"mediaType": "application/hugo",
@@ -194,12 +194,12 @@
{"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",
}},
--- a/tpl/collections/index_test.go
+++ b/tpl/collections/index_test.go
@@ -36,7 +36,7 @@
{[]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
--
⑨