Skip to content

Commit

Permalink
Merge pull request #20 from tls-attacker/allow-complex-result-compare2
Browse files Browse the repository at this point in the history
Add equalsExpectedResult to rating influencer
  • Loading branch information
mmaehren authored Nov 7, 2023
2 parents 80777bc + 99c80c4 commit 0d4549d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void addPropertyRatingInfluencer(PropertyResultRatingInfluencer ratingInf

public PropertyResultRatingInfluencer getPropertyRatingInfluencer(TestResult result) {
for (PropertyResultRatingInfluencer ri : propertyRatingInfluencers) {
if (ri.getResult() == result) {
if (ri.getResult().equalsExpectedResult(result)) {
return ri;
}
}
Expand Down

0 comments on commit 0d4549d

Please sign in to comment.