Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
"env": {"GOPROXY": "direct"},
"steps": [{
"name": "Install Go",
"uses": "actions/setup-go@v3",
"uses": "actions/setup-go@v4",
"with": {"go-version": "${{ matrix.go-version }}"}
}, {
"name": "Checkout code",
"uses": "actions/checkout@v3"
"uses": "actions/checkout@v4"
}, {
"name": "Test",
"run": "go test -race ./..."
Expand Down
6 changes: 0 additions & 6 deletions ossfuzz/fuzz.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package ossfuzz
import (
"bytes"
"fmt"
"strings"

"github.com/BurntSushi/toml"
)
Expand All @@ -28,11 +27,6 @@ func FuzzToml(data []byte) int {
var v2 any
_, err = toml.Decode(buf.String(), &v2)
if err != nil {
// TODO(manunio): remove this when 1.23 lands, see #407.
if strings.Contains(err.Error(), "invalid datetime") {
return 0
}

panic(fmt.Sprintf("failed round trip: %s", err))
}

Expand Down
Loading