aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGravatar kwzrd <[email protected]>2019-11-08 22:52:47 +0100
committerGravatar GitHub <[email protected]>2019-11-08 22:52:47 +0100
commit760f265339b1462b60ea7d5af1fd8d4476c134f0 (patch)
tree330f40e4b21fc32cea87f4f82e4bfcd490473e43 /tests
parentAdd whitespace for readability, consistency & allure (diff)
Update docstring to use asterisks when referring to argument names
Co-Authored-By: Kyle Stanley <[email protected]>
Diffstat (limited to 'tests')
-rw-r--r--tests/bot/rules/test_links.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/rules/test_links.py b/tests/bot/rules/test_links.py
index 40336beb0..be832843b 100644
--- a/tests/bot/rules/test_links.py
+++ b/tests/bot/rules/test_links.py
@@ -18,7 +18,7 @@ class Case(NamedTuple):
def msg(author: str, total_links: int) -> FakeMessage:
- """Makes a message with `total_links` links."""
+ """Makes a message with *total_links* links."""
content = " ".join(["https://pydis.com"] * total_links)
return FakeMessage(author=author, content=content)