Skip to content

Commit ad1a367

Browse files
antonincmsonsi
authored andcommittedJan 18, 2024
Update test in case keeping msg is desired
1 parent e0dd999 commit ad1a367

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎matchers/be_comparable_to_matcher_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,12 @@ var _ = Describe("BeComparableTo", func() {
138138
Exported string
139139
}
140140

141-
It("should produce failure message according to paseed cmp.Option", func() {
141+
It("should produce failure message according to passed cmp.Option", func() {
142142
actual := structWithUnexportedFields{unexported: "xxx", Exported: "exported field value"}
143143
expectedEqual := structWithUnexportedFields{unexported: "yyy", Exported: "exported field value"}
144144
matcherWithEqual := BeComparableTo(expectedEqual, cmpopts.IgnoreUnexported(structWithUnexportedFields{}))
145145

146-
Expect(matcherWithEqual.FailureMessage(actual)).To(BeEmpty())
146+
Expect(matcherWithEqual.FailureMessage(actual)).To(BeEquivalentTo("Expected object to be comparable, diff: "))
147147

148148
expectedDiffernt := structWithUnexportedFields{unexported: "xxx", Exported: "other value"}
149149
matcherWithDifference := BeComparableTo(expectedDiffernt, cmpopts.IgnoreUnexported(structWithUnexportedFields{}))

0 commit comments

Comments
 (0)
Please sign in to comment.