-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Backport 2.x] Remove redundant condition in jvmStats test #14140
Conversation
The breaking API change is fixed in #14143. |
❕ Gradle check result for 307d331: UNSTABLE Please review all flaky tests that succeeded after retry and create an issue if one does not already exist to track the flaky failure. |
This PR is stalled because it has been open for 30 days with no activity. |
Removing second use of the `frequentyl()` function. This function is alraedy used in the beginning of the testing block immediately after the declaration of `jvmStats` variable. The second use of the `frequently()` could cause all the other variables that were carefully prepared for the constructor to not be used at all. Signed-off-by: Lukáš Vlček <[email protected]> (cherry picked from commit 13dd322) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
307d331
to
5000bc9
Compare
@lukas-vlcek I rebased this |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## 2.x #14140 +/- ##
============================================
+ Coverage 71.52% 71.61% +0.09%
- Complexity 62546 62674 +128
============================================
Files 5110 5118 +8
Lines 293684 293958 +274
Branches 42800 42834 +34
============================================
+ Hits 210063 210531 +468
+ Misses 65978 65761 -217
- Partials 17643 17666 +23 ☔ View full report in Codecov by Sentry. |
…ject#14140) Removing second use of the `frequentyl()` function. This function is alraedy used in the beginning of the testing block immediately after the declaration of `jvmStats` variable. The second use of the `frequently()` could cause all the other variables that were carefully prepared for the constructor to not be used at all. (cherry picked from commit 13dd322) Signed-off-by: Lukáš Vlček <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Signed-off-by: kkewwei <[email protected]>
Backport 13dd322 from #14075.