Skip to content

Commit

Permalink
Format floats #532
Browse files Browse the repository at this point in the history
  • Loading branch information
rexim committed Jan 26, 2018
1 parent 6dc8535 commit 6028626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/cactoos/scalar/AvgOfTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ public void withLongScalarsIntValue() {
public void withFloatScalarsIntValue() {
MatcherAssert.assertThat(
new AvgOf(
() -> 1f, () -> 2f, () -> 10f
() -> 1.0f, () -> 2.0f, () -> 10.0f
).longValue(),
Matchers.equalTo(4L)
);
Expand Down

0 comments on commit 6028626

Please sign in to comment.