Skip to content

Commit

Permalink
Merge branch 'main' into update-tests-sgf-parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
jagdish-15 authored Jan 28, 2025
2 parents 14b79a5 + 6488e34 commit 9663cf4
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 9663cf4

Please sign in to comment.