From fa811f269644662d7e2f0549c407b9f83cd76131 Mon Sep 17 00:00:00 2001 From: Sunny Date: Sat, 9 Sep 2017 18:25:16 +0530 Subject: [PATCH] manifest: fix typos --- manifest.go | 2 +- manifest_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.go b/manifest.go index c8013536f5..2140992210 100644 --- a/manifest.go +++ b/manifest.go @@ -190,7 +190,7 @@ func ValidateProjectRoots(c *Ctx, m *Manifest, sm gps.SourceManager) error { var valErr error if len(errorCh) > 0 { valErr = errInvalidProjectRoot - c.Err.Printf("The Following issues were found in Gopkg.toml:\n\n") + c.Err.Printf("The following issues were found in Gopkg.toml:\n\n") for err := range errorCh { c.Err.Println(" ✗", err.Error()) } diff --git a/manifest_test.go b/manifest_test.go index b751c9561d..7ac24448ca 100644 --- a/manifest_test.go +++ b/manifest_test.go @@ -393,7 +393,7 @@ func TestValidateProjectRoots(t *testing.T) { name: "valid project root", manifest: Manifest{ Constraints: map[gps.ProjectRoot]gps.ProjectProperties{ - gps.ProjectRoot("github.com/goland/dep"): { + gps.ProjectRoot("github.com/golang/dep"): { Constraint: gps.Any(), }, },