Skip to content

Commit 8b25c78

Browse files
authored
darts: fix typo in function names (exercism#2146)
1 parent 9abbe2a commit 8b25c78

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

exercises/practice/darts/src/test/java/DartsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void justOutsideTheInnerCircle() {
6262

6363
@Ignore("Remove to run test")
6464
@Test
65-
public void justWithinTheMiddleCirlce() {
65+
public void justWithinTheMiddleCircle() {
6666
Darts darts = new Darts(-3.5, 3.5);
6767
assertEquals(5, darts.score());
6868
}
@@ -77,7 +77,7 @@ public void justOutsideTheMiddleCircle() {
7777

7878
@Ignore("Remove to run test")
7979
@Test
80-
public void justWithinTheOuterCirlce() {
80+
public void justWithinTheOuterCircle() {
8181
Darts darts = new Darts(-7.0, 7.0);
8282
assertEquals(1, darts.score());
8383
}

0 commit comments

Comments
 (0)