From 258d1265c4925b67edea391cdba1a34d03acdd62 Mon Sep 17 00:00:00 2001 From: Dave Cheney Date: Fri, 22 Apr 2016 19:19:39 +0900 Subject: [PATCH] skip tests on tip --- .travis.yml | 3 +-- example_test.go | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8dd99d5..7b3349f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,9 @@ language: go go_import_path: github.com/pkg/errors go: - - 1.5.4 - 1.4.3 + - 1.5.4 - 1.6.1 - - tip script: - go test -v ./... diff --git a/example_test.go b/example_test.go index 41bf109..9a7e2a9 100644 --- a/example_test.go +++ b/example_test.go @@ -18,7 +18,7 @@ func ExampleNew_Fprint() { err := errors.New("whoops") errors.Fprint(os.Stdout, err) - // Output: github.com/pkg/errors/example_test.go:5: whoops + // Output: github.com/pkg/errors/example_test.go:18: whoops } func ExampleWrap() {