Correct the strings.Contains syntax in failing test
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 18 Dec 2015 15:19:00 +0000 (16:19 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 18 Dec 2015 15:19:00 +0000 (16:19 +0100)
tpl/template_resources_test.go

index 661c14cb5a8144fb0cfca5921acbff6ff54ddbfe..2d3cdbc9f618fa2f8ae187c5ece7e2d936224f5f 100644 (file)
@@ -117,7 +117,7 @@ func getTestServer(handler func(w http.ResponseWriter, r *http.Request)) (*httpt
        client := &http.Client{
                Transport: &http.Transport{Proxy: func(r *http.Request) (*url.URL, error) {
 
-                       if !strings.Contains("go1.4", runtime.Version()) {
+                       if !strings.Contains(runtime.Version(), "go1.4") {
                                r.Host = "Host: gohugo.io"
                        }