Skip to content

Commit 2db5a60

Browse files
committed
travis: bump up version and set import path
1 parent 2a8a507 commit 2db5a60

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
language: go
2+
go_import_path: github.com/messagebird/go-rest-api
23
go:
3-
- "1.12"
44
- "1.13"
5+
- "1.14"
56
- stable
67
- master
78
matrix:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/messagebird/go-rest-api
22

3-
go 1.12
3+
go 1.13

sms/message_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ func TestListScheduled(t *testing.T) {
316316
t.Errorf("API call should contain filter by status (%v), but is is not %v", expectedStatusFilter, r.URL.String())
317317
}
318318
if _, err := w.Write(mbtest.Testdata(t, "messageListScheduledObject.json")); err != nil {
319-
t.Fatalf("unexpected error responding to list scheduled request")
319+
t.Fatalf("unexpected error responding to list scheduled request. err: %s", err)
320320
}
321321
})
322322
transport, teardown := mbtest.HTTPTestTransport(h)

0 commit comments

Comments
 (0)