From 58d082d01e42c13949fdf043fd5f4df17613008f Mon Sep 17 00:00:00 2001 From: Robin Ward <robin.ward@gmail.com> Date: Fri, 5 Jul 2013 15:06:21 -0400 Subject: [PATCH] OOPS: Left in some debugging info in specs. Removed --- spec/components/topic_view_spec.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/spec/components/topic_view_spec.rb b/spec/components/topic_view_spec.rb index ce9b88c4e..958cb54ac 100644 --- a/spec/components/topic_view_spec.rb +++ b/spec/components/topic_view_spec.rb @@ -225,8 +225,6 @@ describe TopicView do before { SiteSetting.stubs(:posts_per_page).returns(2) } it 'returns correct posts for all pages' do - puts [p1.id, p2.id, p3.id, p4.id, p5.id].inspect - topic_view.filter_posts_paged(1).should == [p1, p2] topic_view.filter_posts_paged(2).should == [p3, p5] topic_view.filter_posts_paged(100).should == []