aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/cache/behaviors/failure_safety_behavior.rb
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-04-19 17:04:01 -0400
committerGitHub <noreply@github.com>2018-04-19 17:04:01 -0400
commitd26f48a57453844ad81503fe71ba24a1d2a1a1b7 (patch)
tree935f6521b0e86833a6d87087ea39c4a75413213a /activesupport/test/cache/behaviors/failure_safety_behavior.rb
parentcddcc1dac4a0cb49160eb7d929016ede6c495da2 (diff)
parent1a42d87e3b7d90f2a5cb0d8bc6c54a27fbf022a5 (diff)
downloadrails-d26f48a57453844ad81503fe71ba24a1d2a1a1b7.tar.gz
rails-d26f48a57453844ad81503fe71ba24a1d2a1a1b7.tar.bz2
rails-d26f48a57453844ad81503fe71ba24a1d2a1a1b7.zip
Merge pull request #32648 from bogdanvlviv/improve-pattern-filenames-to-catch-more-style-offences
Allow rubocop check more files
Diffstat (limited to 'activesupport/test/cache/behaviors/failure_safety_behavior.rb')
-rw-r--r--activesupport/test/cache/behaviors/failure_safety_behavior.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/cache/behaviors/failure_safety_behavior.rb b/activesupport/test/cache/behaviors/failure_safety_behavior.rb
index 53bda4f942..43b67d81db 100644
--- a/activesupport/test/cache/behaviors/failure_safety_behavior.rb
+++ b/activesupport/test/cache/behaviors/failure_safety_behavior.rb
@@ -63,7 +63,7 @@ module FailureSafetyBehavior
@cache.write("foo", "bar")
emulating_unavailability do |cache|
- assert !cache.exist?("foo")
+ assert_not cache.exist?("foo")
end
end