We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7ad239 commit 08a5a18Copy full SHA for 08a5a18
exercises/practice/darts/darts_test.py
@@ -20,10 +20,10 @@ def test_on_the_middle_circle(self):
20
def test_on_the_inner_circle(self):
21
self.assertEqual(score(0, -1), 10)
22
23
- def test_exactly_on_centre(self):
+ def test_exactly_on_center(self):
24
self.assertEqual(score(0, 0), 10)
25
26
- def test_near_the_centre(self):
+ def test_near_the_center(self):
27
self.assertEqual(score(-0.1, -0.1), 10)
28
29
def test_just_within_the_inner_circle(self):
0 commit comments