Skip to content

Commit 64fbffc

Browse files
committed
Apply code review
1 parent e300719 commit 64fbffc

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1797,7 +1797,8 @@
17971797
"uuid": "d590865c-ef30-424a-8cfb-7f31f04dee1b",
17981798
"practices": [],
17991799
"prerequisites": [
1800-
"lists"
1800+
"lists",
1801+
"dicts"
18011802
],
18021803
"difficulty": 5
18031804
},

exercises/practice/relative-distance/.meta/template.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class {{ exercise | camel_case }}Test(unittest.TestCase):
2222
{%- endif %}
2323
{% endfor -%}
2424

25-
# Additional track-specfic tests
25+
# Additional track-specific tests
2626
{% for case in additional_cases -%}
2727
def test_{{ case["description"] | to_snake }}(self):
2828
family_tree = {

exercises/practice/relative-distance/relative_distance_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# These tests are auto-generated with test data from:
22
# https://github.com/exercism/problem-specifications/tree/main/exercises/relative-distance/canonical-data.json
3-
# File last updated on 2026-01-26
3+
# File last updated on 2026-01-30
44

55
import unittest
66

@@ -214,7 +214,7 @@ def test_complex_graph_some_shortcuts_cross_down_and_cross_up_cousins_several_ti
214214
RelativeDistance(family_tree).degree_of_separation("Wyatt", "Xia"), 12
215215
)
216216

217-
# Additional track-specfic tests
217+
# Additional track-specific tests
218218
def test_person_a_not_in_tree(self):
219219
family_tree = {
220220
"Priya": ["Rami"],

0 commit comments

Comments
 (0)