Skip to content

Commit

Permalink
fixup! update EmailLastSeen wen saving UpVote
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentporte committed Jan 28, 2025
1 parent 125aaaf commit ddb0b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lacommunaute/forum_conversation/tests/tests_shortcuts.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_topic_has_two_posts_requested_by_authenticated_user(self):
def test_topic_has_been_upvoted(self):
topic = TopicFactory(with_post=True)
post = PostFactory(topic=topic)
UpVoteFactory(content_object=post)
UpVoteFactory(content_object=post, voter=post.poster)
posts = get_posts_of_a_topic_except_first_one(topic, AnonymousUser())
post = posts.first()

Expand Down

0 comments on commit ddb0b57

Please sign in to comment.