Skip to content

Commit

Permalink
Refactor: Revert double quote
Browse files Browse the repository at this point in the history
  • Loading branch information
edisonLcardenas committed Apr 9, 2024
1 parent da33255 commit 2564d56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/util/steps/runner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ func TestStepRunner(t *testing.T) {
"level": gomega.Equal(logrus.InfoLevel),
},
{
"msg": gomega.Equal("step [Action github.com/Azure/ARO-RP/pkg/util/steps.failingFunc] encountered error: oh no!"),
"msg": gomega.Equal(`step [Action github.com/Azure/ARO-RP/pkg/util/steps.failingFunc] encountered error: oh no!`),
"level": gomega.Equal(logrus.ErrorLevel),
},
},
wantErr: "oh no!",
wantErr: `oh no!`,
},
{
name: "A successful condition will allow steps to continue",
Expand Down

0 comments on commit 2564d56

Please sign in to comment.