Skip to content

Commit 6488e34

Browse files
authored
Fix spelling in ParallelFrequencyTest (#2907)
[no important files changed] Resolves #2906
1 parent 3f5c931 commit 6488e34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/practice/parallel-letter-frequency/src/test/java/ParallelLetterFrequencyTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
public class ParallelLetterFrequencyTest {
1111

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

0 commit comments

Comments
 (0)