Przeglądaj źródła

skip tests on tip

Dave Cheney 10 lat temu
rodzic
commit
258d1265c4
2 zmienionych plików z 2 dodań i 3 usunięć
  1. 1 2
      .travis.yml
  2. 1 1
      example_test.go

+ 1 - 2
.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 ./...

+ 1 - 1
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() {