Skip to content

Commit

Permalink
Fix the compilation issue in WeightedSnapshotTest
Browse files Browse the repository at this point in the history
The 3.2 version uses the old capitalized test method name for
weighted arrays.
  • Loading branch information
arteam committed Dec 19, 2017
1 parent 8dba548 commit a5b7203
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public void expectNoOverflowForLowWeights() throws Exception {
@Test
public void doesNotProduceNaNValues() {
WeightedSnapshot weightedSnapshot = new WeightedSnapshot(
weightedArray(new long[]{1, 2, 3}, new double[]{0, 0, 0}));
WeightedArray(new long[]{1, 2, 3}, new double[]{0, 0, 0}));
assertThat(weightedSnapshot.getMean()).isEqualTo(0);
}

Expand Down

0 comments on commit a5b7203

Please sign in to comment.