Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuabezaleel committed Jun 23, 2022
1 parent b60a7a7 commit 3374c53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/storage/installation_provider_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func (p *TestInstallationProvider) SetMutableInstallationValues(i *Installation)
i.Status.Modified = now
}

// CreateRun creates a new claim and saves it.
// CreateRun creates a new test run and saves it.
func (p *TestInstallationProvider) CreateRun(r Run, transformations ...func(r *Run)) Run {
for _, transform := range transformations {
transform(&r)
Expand All @@ -78,7 +78,7 @@ func (p *TestInstallationProvider) SetMutableRunValues(r *Run) {
r.Created = now
}

// CreateResult creates a new result from the specified claim and saves it.
// CreateResult creates a new test result and saves it.
func (p *TestInstallationProvider) CreateResult(r Result, transformations ...func(r *Result)) Result {
for _, transform := range transformations {
transform(&r)
Expand All @@ -95,7 +95,7 @@ func (p *TestInstallationProvider) SetMutableResultValues(r *Result) {
r.Created = now
}

// CreateOutput creates a new output from the specified claim and result and saves it.
// CreateOutput creates a new test output and saves it.
func (p *TestInstallationProvider) CreateOutput(o Output, transformations ...func(o *Output)) Output {
for _, transform := range transformations {
transform(&o)
Expand Down

0 comments on commit 3374c53

Please sign in to comment.