Skip to content

Commit

Permalink
Update DataTypesTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
jcal13 authored Sep 13, 2024
1 parent eb319e9 commit 70c0149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/DataTypesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ public void largeSumTest() {
for (int i = 1; i <= 1_000_000; i++) {
lst.add(i);
}
assertEquals("sum form 1 to 1 million should be " + x, x, DataTypes.sum(lst));
assertEquals("sum from 1 to 1 million should be " + x, x, DataTypes.sum(lst));
}
}
}

0 comments on commit 70c0149

Please sign in to comment.