From 7eac718eea0de02bb3b2f53b917f797255607fa5 Mon Sep 17 00:00:00 2001 From: Alex Dadgar Date: Wed, 15 Feb 2017 17:04:53 -0800 Subject: [PATCH] Use RC to see if cause of failure --- .travis.yml | 2 +- command/helpers_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9a7d747a6..dfbc94a96 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ services: language: go go: - - 1.7 + - 1.8rc3 branches: only: diff --git a/command/helpers_test.go b/command/helpers_test.go index fa63d902d..c2b3bc6fb 100644 --- a/command/helpers_test.go +++ b/command/helpers_test.go @@ -268,7 +268,7 @@ func TestJobGetter_LocalFile(t *testing.T) { } // Test StructJob with jobfile from HTTP Server -func TestAPIJob_HTTPServer(t *testing.T) { +func TestJobGetter_HTTPServer(t *testing.T) { http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, job) })