skip tests on tip
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 @@
 	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() {