Skip to content

Commit

Permalink
chore: use interface instead of pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
tzneal committed Jul 1, 2024
1 parent ef45392 commit 04dc14c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/test/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ type Environment struct {
SecurityGroupProvider *securitygroup.DefaultProvider
InstanceProfileProvider *instanceprofile.DefaultProvider
PricingProvider *pricing.DefaultProvider
AMIProvider *amifamily.DefaultProvider
AMIProvider amifamily.Provider
AMIResolver *amifamily.Resolver
VersionProvider *version.DefaultProvider
LaunchTemplateProvider *launchtemplate.DefaultProvider
Expand Down Expand Up @@ -190,4 +190,4 @@ func (env *Environment) Reset() {
}
}
}
}

Check failure on line 193 in pkg/test/environment.go

View workflow job for this annotation

GitHub Actions / ci

expected '}', found 'EOF' (typecheck)

Check failure on line 193 in pkg/test/environment.go

View workflow job for this annotation

GitHub Actions / Analyze Go

expected ';', found 'EOF'

Check failure on line 193 in pkg/test/environment.go

View workflow job for this annotation

GitHub Actions / Analyze Go

expected '}', found 'EOF'

0 comments on commit 04dc14c

Please sign in to comment.