From 82db214c67b2856f7d7698550bc77d456a0059c7 Mon Sep 17 00:00:00 2001 From: Russell Osborne Date: Thu, 1 Jun 2017 20:55:26 -0400 Subject: [PATCH] Improve test name to be better english. --- tests/test_app/spec/controllers/articles_controller_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_app/spec/controllers/articles_controller_spec.rb b/tests/test_app/spec/controllers/articles_controller_spec.rb index 2cf6c02..c41eda2 100644 --- a/tests/test_app/spec/controllers/articles_controller_spec.rb +++ b/tests/test_app/spec/controllers/articles_controller_spec.rb @@ -78,7 +78,7 @@ describe ArticlesController do Rails.application.config.filter_parameters = [:password] end - it "should FILTER params that are included in filtering {}" do + it "values should not be recorded" do get "index", password: "best-password-ever" Impression.last.params.should eq("password" => "[FILTERED]") end