Skip to content
This repository was archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
test(deps): update cli project init
Browse files Browse the repository at this point in the history
  • Loading branch information
paralta committed Feb 22, 2024
1 parent 6897910 commit d51418d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions testenv/docker/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ func ProjectFromConfig(config *Config) (*types.Project, error) {

opts, err := cli.NewProjectOptions(
config.ComposeFiles,
cli.WithContext(config.ctx),
cli.WithName(config.EnvName),
cli.WithInterpolation(true),
cli.WithResolvedPaths(true),
Expand All @@ -83,7 +82,7 @@ func ProjectFromConfig(config *Config) (*types.Project, error) {

WithContainerImages(opts, config.Images)

project, err := cli.ProjectFromOptions(opts)
project, err := cli.ProjectFromOptions(config.ctx, opts)
if err != nil {
return nil, fmt.Errorf("failed to create compose project: %w", err)
}
Expand Down

0 comments on commit d51418d

Please sign in to comment.