Skip to content

Commit

Permalink
fix: remove unicode chars update (#126)
Browse files Browse the repository at this point in the history
Signed-off-by: chenk <hen.keinan@gmail.com>
  • Loading branch information
chen-keinan authored Jan 3, 2024
1 parent f2f7739 commit cbbbb13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ func (c *Check) Run(definedConstraints map[string][]string) {
finalOutput := subCheck.Tests.Execute(out, c.ID, c.IsMultiple)

if finalOutput != nil {
c.ActualValue = removeUnicodeChars(c.ActualValue)
c.ActualValue = removeUnicodeChars(finalOutput.ActualResult)
c.ExpectedResult = finalOutput.ExpectedResult

if finalOutput.TestResult {
Expand Down

0 comments on commit cbbbb13

Please sign in to comment.