File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class Configuration
39
39
# @private
40
40
def self . initialize_configuration ( config )
41
41
config . backtrace_exclusion_patterns << /vendor\/ /
42
- config . backtrace_exclusion_patterns << %r{ lib/rspec/rails }
42
+ config . backtrace_exclusion_patterns << %r{lib/rspec/rails}
43
43
44
44
# controller settings
45
45
config . add_setting :infer_base_class_for_anonymous_controllers , :default => true
Original file line number Diff line number Diff line change 18
18
it "adds 'lib/rspec/rails' to the backtrace exclusions" do
19
19
expect (
20
20
config . backtrace_exclusion_patterns
21
- ) . to include ( %r{ lib/rspec/rails } )
21
+ ) . to include ( %r{lib/rspec/rails} )
22
22
end
23
23
24
24
shared_examples_for "adds setting" do |accessor , opts |
You can’t perform that action at this time.
0 commit comments