Skip to content

Commit

Permalink
Fix activity pub test docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
LoanR committed Jul 17, 2024
1 parent f5ef553 commit 5efd156
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pod/activitypub/tests/test_video_broadcast.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_video_creation(self, create_task, update_task, delete_task):
@patch("pod.activitypub.tasks.task_broadcast_local_video_update.delay")
@patch("pod.activitypub.tasks.task_broadcast_local_video_creation.delay")
def test_video_update(self, create_task, update_task, delete_task):
"""Create video and check broadcast through ActivityPub.
"""Update video and check broadcast through ActivityPub.
Visible video update should send an update task.
"""
Expand All @@ -47,7 +47,7 @@ def test_video_update(self, create_task, update_task, delete_task):
@patch("pod.activitypub.tasks.task_broadcast_local_video_update.delay")
@patch("pod.activitypub.tasks.task_broadcast_local_video_creation.delay")
def test_video_delete(self, create_task, update_task, delete_task):
"""Create video and check broadcast through ActivityPub.
"""Hide video and check broadcast through ActivityPub.
Newly invisible video should send a delete task.
"""
Expand Down

0 comments on commit 5efd156

Please sign in to comment.