Skip to content

Commit

Permalink
Merge 1d7ac55 into b66d3cc
Browse files Browse the repository at this point in the history
  • Loading branch information
ray-milkey committed May 29, 2019
2 parents b66d3cc + 1d7ac55 commit 569e90f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/southbound/gnmiClient_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import (
func Test_GnmiClientBadCreate(t *testing.T) {
d := client.Destination{}
ctx := context.Background()
c, err := GnmiClientFactory(ctx, d)
c, e := GnmiClientFactory(ctx, d)

assert.ErrorContains(t, err, "Addrs must only contain")
assert.ErrorContains(t, e, "Addrs must only contain")
assert.Equal(t, c, nil)
}
4 changes: 2 additions & 2 deletions tools/build/coveralls-coverage
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

go get github.com/go-playground/overalls && go get github.com/mattn/goveralls

overalls -project=github.com/onosproject/onos-config -covermode=count -ignore=".git,vendor"
goveralls -repotoken zYSpxa0z7rO5sQ4IrVQeaG8ARkv0cZSNO -coverprofile=overalls.coverprofile
overalls -project=github.com/onosproject/onos-config -covermode=count -ignore=".git,vendor,models"
goveralls -repotoken EnO02Chqts0VXBkltTDHeOl5YhBccsN8n -coverprofile=overalls.coverprofile -service travis-ci

0 comments on commit 569e90f

Please sign in to comment.