Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1121)

Unified Diff: vpython/application/subcommand_verify.go

Issue 2927573002: [vpython] Fix PEP425 naming. (Closed)
Patch Set: rebase and update Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « vpython/application/application.go ('k') | vpython/cipd/pep425.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vpython/application/subcommand_verify.go
diff --git a/vpython/application/subcommand_verify.go b/vpython/application/subcommand_verify.go
index 08998af7df35f8fd57bdb6c5d641d2cd617194aa..47e7e5011a2e003ce2d59dd2c0e29352ca42825a 100644
--- a/vpython/application/subcommand_verify.go
+++ b/vpython/application/subcommand_verify.go
@@ -62,7 +62,7 @@ func (cr *verifyCommandRun) Run(app subcommands.Application, args []string, env
// Run our Verification generator and verify each generated environment.
if a.WithVerificationConfig != nil {
- err := a.WithVerificationConfig(c, func(cfg Config, verificationScenarios []*vpython.Pep425Tag) error {
+ err := a.WithVerificationConfig(c, func(cfg Config, verificationScenarios []*vpython.PEP425Tag) error {
if len(s.VerifyPep425Tag) > 0 {
verificationScenarios = s.VerifyPep425Tag
}
@@ -75,7 +75,7 @@ func (cr *verifyCommandRun) Run(app subcommands.Application, args []string, env
// Create a verification environment to pass to our package loader.
e := vpython.Environment{
Spec: s.Clone(),
- Pep425Tag: []*vpython.Pep425Tag{vs},
+ Pep425Tag: []*vpython.PEP425Tag{vs},
}
if err := spec.NormalizeEnvironment(&e); err != nil {
logging.Errorf(c, "Failed to normalize environment against %q: %s", vs.TagString(), err)
« no previous file with comments | « vpython/application/application.go ('k') | vpython/cipd/pep425.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698