Skip to content

Commit

Permalink
chore: add go1.13 support (#613)
Browse files Browse the repository at this point in the history
* chore: add go1.13 support

* remove sudo

* change external pkg
  • Loading branch information
easonlin404 authored and ubogdan committed Jan 17, 2020
1 parent eebe67f commit de5290b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: go
sudo: false

go:
- 1.11.x
- 1.12.x
- 1.13.x

install:
- make deps
Expand Down
2 changes: 1 addition & 1 deletion operation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -871,7 +871,7 @@ func TestFindTypeDefCoreLib(t *testing.T) {
}

func TestFindTypeDefExternalPkg(t *testing.T) {
spec, err := findTypeDef("github.com/stretchr/testify/assert", "Assertions")
spec, err := findTypeDef("github.com/KyleBanks/depth", "Tree")
assert.NoError(t, err)
assert.NotNil(t, spec)
}
Expand Down

0 comments on commit de5290b

Please sign in to comment.