Skip to content

Commit

Permalink
fix(e2e): fix duplicate parameters test
Browse files Browse the repository at this point in the history
  • Loading branch information
tadayosi committed May 13, 2022
1 parent b9d6933 commit 3869c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/common/cli/duplicate_parameters_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ func TestDuplicateParameters(t *testing.T) {
// the command is executed inside GetOutputString function
commOutput := GetOutputString(comm)

outParams := `"traits":{"affinity":{"configuration":{"enabled":true}},"camel":{"configuration":{"properties":["prop1 = true","prop2 = true","foo = bar"]}},"pull-secret":{"configuration":{"enabled":true}},"tracing":{"configuration":{"enabled":true}}}`
outParams := `"traits":{"affinity":{"enabled":true},"camel":{"properties":["prop1 = true","prop2 = true","foo = bar"]},"pull-secret":{"enabled":true},"tracing":{"enabled":true}}`
Expect(commOutput).To(ContainSubstring(outParams))
}

0 comments on commit 3869c0f

Please sign in to comment.