Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmestad committed Aug 31, 2020
1 parent ad3376d commit f30a88a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ source 'https://rubygems.org'
gemspec

gem 'rake'
gem 'rack', '>= 2.0.6'
gem 'pry'

group :test do
gem 'rspec', '~>3'
gem 'rspec', '~> 3'
gem 'rack-test'
end
2 changes: 1 addition & 1 deletion spec/warden/manager_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def call(env)

result = builder.to_app.call(env)
expect(result[0]).to eq(401)
expect(result[2].body).to eq(["Bad"])
expect(result[2]).to eq(["Bad"])
expect($throw_count).to eq(2)
end

Expand Down

0 comments on commit f30a88a

Please sign in to comment.