Skip to content

Commit f28df0d

Browse files
committed
Make some URL slugs shorter
1 parent 3669b8c commit f28df0d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

wordcount/tests/task_03.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@task(
55
number=3,
66
name="Handle Non-ASCII Unicode Characters",
7-
url="https://realpython.com/lessons/wordcount-handle-non-ascii-unicode-characters-task/",
7+
url="https://realpython.com/lessons/wordcount-handle-non-ascii-characters-task/",
88
)
99
@external(
1010
url="https://docs.python.org/3/howto/unicode.html#python-s-unicode-support",

wordcount/tests/task_04.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@task(
55
number=4,
66
name="Format Numbers in Displayed Counts",
7-
url="https://realpython.com/lessons/wordcount-format-numbers-in-displayed-counts-task/",
7+
url="https://realpython.com/lessons/wordcount-format-numbers-task/",
88
)
99
@tutorial(
1010
"how-to-python-f-string-format-float",

wordcount/tests/task_06.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@task(
55
number=6,
66
name="Ignore Directories and Missing Files",
7-
url="https://realpython.com/lessons/wordcount-ignore-directories-and-missing-files-task/",
7+
url="https://realpython.com/lessons/wordcount-ignore-invalid-paths-task/",
88
)
99
@tutorial("python-exceptions", "Python Exceptions: An Introduction")
1010
@tutorial(

wordcount/tests/task_08.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@task(
55
number=8,
66
name="Ensure Consistent Number Formatting",
7-
url="https://realpython.com/lessons/wordcount-ensure-consistent-number-formatting-task/",
7+
url="https://realpython.com/lessons/wordcount-consistent-formatting-task/",
88
)
99
@tutorial("python-data-classes", "Data Classes in Python (Guide)")
1010
@tutorial(

wordcount/tests/task_09.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
@task(
77
number=9,
88
name="Select Counts With Command-Line Options",
9-
url="https://realpython.com/lessons/wordcount-select-counts-with-command-line-options-task/",
9+
url="https://realpython.com/lessons/wordcount-select-counts-task/",
1010
)
1111
@tutorial("python-bitwise-operators", "Bitwise Operators in Python")
1212
@tutorial(

wordcount/tests/task_10.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@task(
88
number=10,
99
name="Add Support for Counting the Characters",
10-
url="https://realpython.com/lessons/wordcount-add-support-for-counting-characters-task/",
10+
url="https://realpython.com/lessons/wordcount-counting-characters-task/",
1111
)
1212
class Test:
1313
def test_only_counts_characters(self, wc, runner):

0 commit comments

Comments
 (0)