fix: correct "bugs" to "issues" in routing table and README references across multiple documentation files

This commit is contained in:
2026-06-14 07:48:10 +00:00
parent f79a427f32
commit f2b910ea75
162 changed files with 7011 additions and 1134 deletions
+12
View File
@@ -40,6 +40,8 @@ def _post(owner, **extra):
"image": None,
"stars": 0,
"created_at": _now_db_helpers(),
"deleted_at": None,
"deleted_by": None,
**extra,
}
)
@@ -54,6 +56,8 @@ def _comment(owner, target_uid):
"target_type": "post",
"content": "db helper comment",
"created_at": _now_db_helpers(),
"deleted_at": None,
"deleted_by": None,
}
)
return uid
@@ -66,6 +70,8 @@ def _vote(target_type, target_uid, value):
"target_type": target_type,
"value": value,
"created_at": _now_db_helpers(),
"deleted_at": None,
"deleted_by": None,
}
)
from uuid import uuid4
@@ -94,6 +100,8 @@ def test_get_vote_counts_groups_up_and_down(local_db):
"target_type": "post",
"value": value,
"created_at": _now_db_helpers(),
"deleted_at": None,
"deleted_by": None,
}
)
ups, downs = get_vote_counts([target])
@@ -112,6 +120,8 @@ def test_get_user_votes_returns_user_value(local_db):
"target_type": "post",
"value": 1,
"created_at": _now_db_helpers(),
"deleted_at": None,
"deleted_by": None,
}
)
assert get_user_votes(user, [target]) == {target: 1}
@@ -129,6 +139,8 @@ def test_get_comment_counts_by_post_uids(local_db):
"target_uid": post,
"content": "hi",
"created_at": _now_db_helpers(),
"deleted_at": None,
"deleted_by": None,
}
)
assert get_comment_counts_by_post_uids([post]) == {post: 2}