aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2017-03-21 16:50:35 -0400
committerRafael Mendonça França <rafaelmfranca@gmail.com>2017-03-21 16:50:35 -0400
commit681277e53bf084195eab437b3006043bbd40ef4d (patch)
treea8626ef50c72e417e86a2f3c96d48ce72d21abe2
parent843345cae59b73e50af685ac1303a419a06b4c91 (diff)
downloadrails-681277e53bf084195eab437b3006043bbd40ef4d.tar.gz
rails-681277e53bf084195eab437b3006043bbd40ef4d.tar.bz2
rails-681277e53bf084195eab437b3006043bbd40ef4d.zip
Fix test that was asserting the wrong thing
-rw-r--r--actionpack/test/controller/parameters/accessors_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/parameters/accessors_test.rb b/actionpack/test/controller/parameters/accessors_test.rb
index f17e93a431..7725c25e22 100644
--- a/actionpack/test/controller/parameters/accessors_test.rb
+++ b/actionpack/test/controller/parameters/accessors_test.rb
@@ -99,7 +99,7 @@ class ParametersAccessorsTest < ActiveSupport::TestCase
test "has_value? returns false if the given value is not present in the params" do
params = ActionController::Parameters.new(city: "Chicago", state: "Illinois")
- refute @params.has_value?("New York")
+ refute params.has_value?("New York")
end
test "include? returns true if the given key is present in the params" do