diff options
-rw-r--r-- | .github/workflows/ci-build.yml | 2 | ||||
-rw-r--r-- | bors.toml | 6 | ||||
-rw-r--r-- | static_pool_test.go | 2 |
3 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 61ab40de..585858c1 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: php: [7.2, 7.3, 7.4] - go: [1.13, 1.14] + go: [1.14, 1.15] os: [ubuntu-latest] env: GO111MODULE: on @@ -1,9 +1,9 @@ status = [ -'Build (PHP 7.2, Go 1.13, OS ubuntu-latest)', +'Build (PHP 7.2, Go 1.15, OS ubuntu-latest)', 'Build (PHP 7.2, Go 1.14, OS ubuntu-latest)', -'Build (PHP 7.3, Go 1.13, OS ubuntu-latest)', +'Build (PHP 7.3, Go 1.15, OS ubuntu-latest)', 'Build (PHP 7.3, Go 1.14, OS ubuntu-latest)', -'Build (PHP 7.4, Go 1.13, OS ubuntu-latest)', +'Build (PHP 7.4, Go 1.15, OS ubuntu-latest)', 'Build (PHP 7.4, Go 1.14, OS ubuntu-latest)', 'runner / golangci-lint', 'Build docker image',] diff --git a/static_pool_test.go b/static_pool_test.go index e986a9bf..fd237429 100644 --- a/static_pool_test.go +++ b/static_pool_test.go @@ -190,9 +190,7 @@ func Test_StaticPool_Broken_Replace(t *testing.T) { } } }() - res, err := p.ExecWithContext(ctx, Payload{Body: []byte("hello")}) - assert.Error(t, err) assert.Nil(t, res.Context) assert.Nil(t, res.Body) |