FIX: change topic creator wasn't removing the topic from the previous creator's activity stream

This commit is contained in:
Neil Lalonde
2015-05-29 17:39:36 -04:00
parent 548707ba14
commit 3a67c02c7a
2 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ describe PostOwnerChanger do
p2user.user_stat.update_attributes(topic_count: 0, post_count: 1, first_post_created_at: p2.created_at, topic_reply_count: 1)
UserAction.create!( action_type: UserAction::NEW_TOPIC, user_id: p1user.id, acting_user_id: p1user.id,
target_post_id: p1.id, target_topic_id: p1.topic_id, created_at: p1.created_at )
target_post_id: -1, target_topic_id: p1.topic_id, created_at: p1.created_at )
UserAction.create!( action_type: UserAction::REPLY, user_id: p2user.id, acting_user_id: p2user.id,
target_post_id: p2.id, target_topic_id: p2.topic_id, created_at: p2.created_at )