Skip to content

Commit

Permalink
umm
Browse files Browse the repository at this point in the history
  • Loading branch information
JuddL333 committed Jan 31, 2013
1 parent ed94b06 commit 59d1ed1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
stream: ./script/stream
#queue: bundle exec sidekiq -C config.yml
queue: bundle exec sidekiq -C config.yml
4 changes: 2 additions & 2 deletions config/sidekiq.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
:namespace 'vegastech_bulletin_board'
:concurrency: 3
namespace: 'vegastech_bulletin_board'
concurrency: 3
2 changes: 1 addition & 1 deletion spec/models/story_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
it 'should truncate a tweet to 140 characters' do
story.stub(:votes_count).and_return(5)
story.stub(:content).and_return('x' * 200)
Twitter.should_receive(:update).with('RT @lvrug: ' + 'x' * 128 + '')
Twitter.should_receive(:update).with('RT @lvrug: ' + 'x' * 125 + '...')
story.run_callbacks(:save)
end

Expand Down

0 comments on commit 59d1ed1

Please sign in to comment.