Skip to content

Commit

Permalink
fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
EronWright committed Feb 15, 2024
1 parent e112e0d commit f751d46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pulumitest/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func (a *PulumiTest) Install() string {
cmd.Dir = a.source
out, err := cmd.CombinedOutput()
if err != nil {
a.t.Fatalf("failed to installing packages and plugins: %s\n%s", err, out)
a.t.Fatalf("failed to install packages and plugins: %s\n%s", err, out)
}
return string(out)
}

0 comments on commit f751d46

Please sign in to comment.