Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/custom-set/src/test/java/CustomSetTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void emptySetIsASubsetOfAnotherEmptySet() {

@Ignore("Remove to run test")
@Test
public void emptySetIsASubsetOfNonEemptySet() {
public void emptySetIsASubsetOfNonEmptySet() {
final boolean actual
= new CustomSet<>(Arrays.asList(1))
.isSubset(
Expand Down
2 changes: 1 addition & 1 deletion exercises/word-count/src/test/java/WordCountTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void countOneOfEach() {

@Ignore("Remove to run test")
@Test
public void countMultipleOccurences() {
public void countMultipleOccurrences() {
expectedWordCount.put("one", 1);
expectedWordCount.put("fish", 4);
expectedWordCount.put("two", 1);
Expand Down