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
There is a bug in: GetErrorMessage when it verify body.
It expect 3 parameters for the error message.
PropertyName
Value
Expected value but only two params exist in the code and gives a formatter error.
This will work: (added propertyName in the array.)
file: HttpInteractionVerifier
line: 114?
var propertyHasExpectedValue = providedProperty.Equals(propertyValue);
if (!propertyHasExpectedValue)
{
var message = GetErrorMessage(ErrorMessages.IncorrectReposnseBodyPropertyValue, propertyName,
propertyValue, providedProperty);
errors.Add(message);
}
I do not know how to contribute to the code it self for a review. Hope this lib is still active. Like this methods better then the RUST version.
The text was updated successfully, but these errors were encountered:
There is a bug in: GetErrorMessage when it verify body.
It expect 3 parameters for the error message.
PropertyName
Value
Expected value but only two params exist in the code and gives a formatter error.
This will work: (added propertyName in the array.)
file: HttpInteractionVerifier
line: 114?
I do not know how to contribute to the code it self for a review. Hope this lib is still active. Like this methods better then the RUST version.
The text was updated successfully, but these errors were encountered: