Update golang 1.11

This commit is contained in:
Junpei Tsuji
2018-11-06 17:21:59 +09:00
parent 441ba93c28
commit 3380afe242
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
language: go
go:
- 1.10.2
- 1.11.2
before_install:
- sudo pip install codecov
install:

View File

@@ -1,7 +1,7 @@
go-iap
======
![](https://img.shields.io/badge/golang-1.10-blue.svg?style=flat)
![](https://img.shields.io/badge/golang-1.11-blue.svg?style=flat)
[![Build Status](https://travis-ci.org/awa/go-iap.svg?branch=master)](https://travis-ci.org/awa/go-iap)
[![codecov.io](https://codecov.io/github/awa/go-iap/coverage.svg?branch=master)](https://codecov.io/github/awa/go-iap?branch=master)

View File

@@ -33,7 +33,7 @@ func TestNumericString_UnmarshalJSON(t *testing.T) {
{
name: "object case",
in: []byte("{\"ID\":{\"Num\": 8080}}"),
err: errors.New("json: cannot unmarshal object into Go struct field foo.ID of type json.Number"),
err: errors.New("json: cannot unmarshal object into Go value of type json.Number"),
out: foo{},
},
}