File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ def parse(arguments)
80
80
end
81
81
end
82
82
83
- parse_match_expressions ( opts . parse! ( arguments ) )
83
+ parse_match_expressions ( opts . parse! ( arguments . dup ) )
84
84
85
85
config
86
86
end
Original file line number Diff line number Diff line change @@ -142,11 +142,11 @@ def apply
142
142
allow ( kernel ) . to receive_messages ( exit : nil )
143
143
end
144
144
145
- let ( :arguments ) { options + expressions }
146
- let ( :expected_integration ) { Mutant ::Integration ::Null }
147
- let ( :expected_matcher_config ) { default_matcher_config }
148
- let ( :expressions ) { %w[ TestApp* ] }
149
- let ( :options ) { [ ] }
145
+ let ( :arguments ) { ( options + expressions ) . freeze }
146
+ let ( :expected_integration ) { Mutant ::Integration ::Null }
147
+ let ( :expected_matcher_config ) { default_matcher_config }
148
+ let ( :expressions ) { %w[ TestApp* ] }
149
+ let ( :options ) { [ ] }
150
150
151
151
let ( :default_matcher_config ) do
152
152
Mutant ::Matcher ::Config ::DEFAULT
You can’t perform that action at this time.
0 commit comments