Skip to content

Commit

Permalink
Fix spelling in ParallelFrequencyTest (#2907)
Browse files Browse the repository at this point in the history
[no important files changed]

Resolves #2906
  • Loading branch information
akmaekki authored Jan 20, 2025
1 parent 3f5c931 commit 6488e34
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

public class ParallelLetterFrequencyTest {

private String calculateFrecuencies =
private String calculateFrequencies =
"There, peeping among the cloud-wrack above a dark tower high up in the mountains," +
"Sam saw a white star twinkle for a while." +
"The beauty of it smote his heart," +
Expand Down Expand Up @@ -338,7 +338,7 @@ public void testUnicodeLetters() {
@Disabled("Remove to run test")
@Test
public void testCombinationOfLowerAndUppercaseLettersPunctuationAndWhiteSpace() {
String[] input = { calculateFrecuencies };
String[] input = {calculateFrequencies};
Map<Character, Integer> expectedOutput = new HashMap<>() {
{
put('a', 32);
Expand Down

0 comments on commit 6488e34

Please sign in to comment.