Skip to content

Commit d718039

Browse files
author
James Lees
committed
pin testify dep
1 parent 669df65 commit d718039

8 files changed

+9
-13
lines changed

.travis.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,8 @@ go:
1010
- 1.11
1111
- 1.12
1212
- tip
13-
install:
14-
- go get github.com/stretchr/testify/assert
15-
- go get github.com/axw/gocov/gocov
13+
before_script:
1614
- go get github.com/mattn/goveralls
17-
- go get golang.org/x/crypto/nacl/secretbox
18-
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
19-
- $HOME/gopath/bin/goveralls -service=travis-ci -repotoken=$COVERALLS_TOKEN
15+
- PATH=$PATH:$HOME/gopath/bin goveralls -service=travis-ci -repotoken=$COVERALLS_TOKEN
2016
script:
2117
- go test

channel_authentication_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package pusher
33
import (
44
"testing"
55

6-
"github.com/stretchr/testify/assert"
6+
"gopkg.in/stretchr/testify.v1/assert"
77
)
88

99
func setUpAuthClient() Client {

client_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"testing"
1111
"time"
1212

13-
"github.com/stretchr/testify/assert"
13+
"gopkg.in/stretchr/testify.v1/assert"
1414
)
1515

1616
func TestTriggerSuccessCase(t *testing.T) {

crypto_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/hex"
55
"testing"
66

7-
"github.com/stretchr/testify/assert"
7+
"gopkg.in/stretchr/testify.v1/assert"
88
)
99

1010
func TestHmacSignature(t *testing.T) {

request_url_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package pusher
33
import (
44
"testing"
55

6-
"github.com/stretchr/testify/assert"
6+
"gopkg.in/stretchr/testify.v1/assert"
77
)
88

99
func TestTriggerRequestUrl(t *testing.T) {

response_parsing_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package pusher
33
import (
44
"testing"
55

6-
"github.com/stretchr/testify/assert"
6+
"gopkg.in/stretchr/testify.v1/assert"
77
)
88

99
func TestParsingChannelsList(t *testing.T) {

util_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package pusher
33
import (
44
"testing"
55

6-
"github.com/stretchr/testify/assert"
6+
"gopkg.in/stretchr/testify.v1/assert"
77
)
88

99
func TestParseAuthRequestParamsNoSock(t *testing.T) {

webhook_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"net/http"
55
"testing"
66

7-
"github.com/stretchr/testify/assert"
7+
"gopkg.in/stretchr/testify.v1/assert"
88
)
99

1010
func setUpClient() Client {

0 commit comments

Comments
 (0)