summaryrefslogtreecommitdiff
path: root/spec/support/matchers/query_matcher.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/matchers/query_matcher.rb')
-rw-r--r--spec/support/matchers/query_matcher.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/matchers/query_matcher.rb b/spec/support/matchers/query_matcher.rb
index ac8c4ab91d9..bb0feca7c43 100644
--- a/spec/support/matchers/query_matcher.rb
+++ b/spec/support/matchers/query_matcher.rb
@@ -28,6 +28,6 @@ RSpec::Matchers.define :make_queries_matching do |matcher, expected_count = nil|
def query_count(regex, &block)
@recorder = ActiveRecord::QueryRecorder.new(&block).log
- @recorder.select{ |q| q.match(regex) }
+ @recorder.select { |q| q.match(regex) }
end
end