Skip to content

Commit

Permalink
Call logic fix: Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Sep 12, 2024
1 parent 2b81cae commit 06ec04e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void test_call_feature_with_parameters_hook_reporting() {

StartTestItemRQ calledFeature = stepCaptor.getAllValues()
.stream()
.filter(rq -> "a feature which is called with parameters".equals(rq.getName()))
.filter(rq -> "Feature: a feature which is called with parameters".equals(rq.getName()))
.findAny()
.orElseThrow();

Expand Down

0 comments on commit 06ec04e

Please sign in to comment.