-
Notifications
You must be signed in to change notification settings - Fork 170
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
(#1223) Replace static factory methods with direct call to new #1433
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1433 +/- ##
============================================
+ Coverage 89.81% 89.83% +0.02%
- Complexity 1678 1682 +4
============================================
Files 277 279 +2
Lines 4004 4014 +10
Branches 211 211
============================================
+ Hits 3596 3606 +10
Misses 376 376
Partials 32 32
Continue to review full report at Codecov.
|
@0crat status |
@victornoel This is what I know about this job in C63314D6Z, as in §32: |
@0crat assign me |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@andreoss a few comments :)
@@ -52,7 +52,7 @@ public void testUncheckedBiFunc() { | |||
new UncheckedBiFunc<>( | |||
(fst, scd) -> true | |||
).apply(1, 2), | |||
Matchers.equalTo(true) | |||
new IsEqual<>(true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@andreoss let's use IsTrue
from cactoos-matchers here :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@andreoss thank you :)
@rultor merge |
@victornoel OK, I'll try to merge now. You can check the progress of the merge here |
@victornoel Done! FYI, the full log is here (took me 10min) |
Job was finished in 2 hours, bonus for fast delivery is possible (see §36) |
Per #1223: