Skip to content

Commit

Permalink
Double quote just the content
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-asawicki committed Nov 27, 2024
1 parent e87c2a3 commit cf88139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/experiments/experiment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func Test_experiments(t *testing.T) {
maskOnCi := func(line string) error {
if os.Getenv("GITHUB_ACTIONS") == "true" {
t.Logf("masking `%s`", line)
return echo(fmt.Sprintf(`"::add-mask::%s"`, line))
return echo(fmt.Sprintf(`::add-mask::"%s"`, line))
}
return nil
}
Expand Down

0 comments on commit cf88139

Please sign in to comment.