Skip to content

Commit

Permalink
Fix broken test (#1689)
Browse files Browse the repository at this point in the history
The interceptor used in the test did not call proceed().
Due to that there was never any failure even if the test
condition should not hold.
  • Loading branch information
Vampire authored Jun 6, 2023
1 parent 643e272 commit dedede9
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ def foo() {
assert it.arguments.size() == 1
assert it.arguments.first() == MISSING_ARGUMENT
it.arguments[0] = 'foo'
it.proceed()
}
}
}
Expand Down

0 comments on commit dedede9

Please sign in to comment.