Skip to content

Commit

Permalink
Field comparison result no longer quotes strings, so adept note_test.…
Browse files Browse the repository at this point in the history
…go to that new style.
  • Loading branch information
HouzuoGuo committed Mar 21, 2017
1 parent 003aa6e commit c7cab26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sap/note/note_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func TestCompareNoteFields(t *testing.T) {
for _, comparison := range comparisons {
switch comparison.ReflectFieldName {
case "SysconfigPrefix":
if comparison.ExpectedValueJS != `"abc"` || comparison.ActualValueJS != `"MISMATCH"` || comparison.MatchExpectation {
if comparison.ExpectedValueJS != `abc` || comparison.ActualValueJS != `MISMATCH` || comparison.MatchExpectation {
t.Fatalf("%+v", comparison)
}
case "VMNumberHugePages":
Expand Down

0 comments on commit c7cab26

Please sign in to comment.