Skip to content
This repository was archived by the owner on Jan 19, 2022. It is now read-only.
Open
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
2 changes: 1 addition & 1 deletion Cartridge
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ github.com/garyburd/redigo/redis origin/master
github.com/cloudfoundry/gosteno origin/master
github.com/onsi/ginkgo origin/master
github.com/onsi/gomega origin/master
launchpad.net/goyaml last:1
github.com/go-yaml/yaml origin/master
2 changes: 1 addition & 1 deletion Cartridge.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ github.com/garyburd/redigo/redis ed54f4ed86a815cf09870e4bd1a10a2ee39a4308
github.com/cloudfoundry/gosteno 5eb8c6e554f0dfc39d6468813b8ac19ec28fe74f
github.com/onsi/ginkgo 32204a3eab0576cbea19f5ff8b27d3a928647ea6
github.com/onsi/gomega a78ae492d53aad5a7a232d0d0462c14c400e3ee7
launchpad.net/goyaml 51
github.com/go-yaml/yaml 53feefa2559fb8dfa8d81baad31be332c97d6c77
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"io/ioutil"
"os"

"launchpad.net/goyaml"
goyaml "github.com/go-yaml/yaml"
)

type Config interface {
Expand Down
2 changes: 1 addition & 1 deletion config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ var _ = Describe("ConfigAndFlags", func() {
flags = []string{"-config", tempfile}

err = config.Parse(flags)
Ω(err.Error()).Should(ContainSubstring("YAML error"))
Ω(err.Error()).Should(ContainSubstring("yaml: line"))
os.RemoveAll(tempfile)
})
})
Expand Down