Skip to content

Commit

Permalink
Merge pull request igrigorik#106 from jwarchol/master
Browse files Browse the repository at this point in the history
Two small testing fixes.
  • Loading branch information
igrigorik committed Jan 13, 2012
2 parents c7209a5 + 00b33b8 commit dea8135
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -3,6 +3,7 @@ source :gemcutter
gem 'eventmachine', :git => 'git://github.com/eventmachine/eventmachine.git' gem 'eventmachine', :git => 'git://github.com/eventmachine/eventmachine.git'


group :development do group :development do
gem 'rake'
gem 'rspec' gem 'rspec'
gem 'em-http-request', :git => 'git://github.com/igrigorik/em-http-request' gem 'em-http-request', :git => 'git://github.com/igrigorik/em-http-request'
gem 'remcached' gem 'remcached'
Expand Down
2 changes: 1 addition & 1 deletion spec/hiredis_spec.rb
Expand Up @@ -49,7 +49,7 @@
it "should incr/decr key synchronously" do it "should incr/decr key synchronously" do
EventMachine.synchrony do EventMachine.synchrony do
redis = EM::Hiredis::Client.connect redis = EM::Hiredis::Client.connect
redis.delete('key') redis.del('key')


redis.incr('key') redis.incr('key')
redis.get('key').to_i.should == 1 redis.get('key').to_i.should == 1
Expand Down

0 comments on commit dea8135

Please sign in to comment.