File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -105,13 +105,13 @@ def tags_mash_from_strings(tags_strings)
105
105
subject { generator . filter_excluded_tags ( tags_mash_from_strings ( %w( 1 2 3 ) ) ) }
106
106
107
107
context "with matching regex" do
108
- let ( :generator ) { GitHubChangelogGenerator ::Generator . new ( exclude_tags_regex : ' [23]' ) }
108
+ let ( :generator ) { GitHubChangelogGenerator ::Generator . new ( exclude_tags_regex : " [23]" ) }
109
109
it { is_expected . to be_a Array }
110
110
it { is_expected . to match_array ( tags_mash_from_strings ( %w( 1 ) ) ) }
111
111
end
112
112
113
113
context "with non-matching regex" do
114
- let ( :generator ) { GitHubChangelogGenerator ::Generator . new ( exclude_tags_regex : ' [45]' ) }
114
+ let ( :generator ) { GitHubChangelogGenerator ::Generator . new ( exclude_tags_regex : " [45]" ) }
115
115
it { is_expected . to be_a Array }
116
116
it { is_expected . to match_array ( tags_mash_from_strings ( %w( 1 2 3 ) ) ) }
117
117
end
You can’t perform that action at this time.
0 commit comments