0
0
Fork 0

MB-20793 : Validation for min/max/start/end params for numeric/date range facets

Updated the comments in UTs.
This commit is contained in:
Sreekanth Sivasankaran 2017-02-02 13:10:09 +05:30
parent c6f96f081d
commit 2a09857657
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ func verifyErrors(t *testing.T, actual, expected error) {
if actual == nil && actual == expected {
return
}
//actual error matches the expected error.
//actual error doesn't match the expected error.
if actual != nil && expected != nil && actual.Error() != expected.Error() {
t.Error(actual)
} else if actual == nil {