You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnfmt.Sprintf("Expected\n\t%#v\nto have its code to match %s", actual, matcher.codeMatcher.FailureMessage(connectorError.Code()))
246
269
}
247
270
271
+
ifmatcher.descriptionMatcher!=nil {
272
+
returnfmt.Sprintf("Expected\n\t%#v\nto have its description to match %s", actual, matcher.descriptionMatcher.FailureMessage(connectorError.Description()))
273
+
}
274
+
248
275
returnfmt.Sprintf("Unexpected condition in matcher")
returnfmt.Sprintf("Expected\n\t%#v\nnot to have its code to match %s", actual, matcher.codeMatcher.FailureMessage(connectorError.Code()))
263
290
}
264
291
292
+
ifmatcher.descriptionMatcher!=nil {
293
+
returnfmt.Sprintf("Expected\n\t%#v\nnot to have its description to match %s", actual, matcher.descriptionMatcher.FailureMessage(connectorError.Description()))
294
+
}
295
+
265
296
returnfmt.Sprintf("Unexpected condition in matcher")
0 commit comments