diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/models/glitch/keyword_mute_helper_spec.rb (renamed from spec/models/glitch/filter_helper_spec.rb) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/glitch/filter_helper_spec.rb b/spec/models/glitch/keyword_mute_helper_spec.rb index 9a808667d..9d09e58da 100644 --- a/spec/models/glitch/filter_helper_spec.rb +++ b/spec/models/glitch/keyword_mute_helper_spec.rb @@ -1,9 +1,9 @@ require 'rails_helper' -RSpec.describe Glitch::FilterHelper do +RSpec.describe Glitch::KeywordMuteHelper do describe '#matches?' do let(:alice) { Fabricate(:account, username: 'alice').tap(&:save!) } - let(:helper) { Glitch::FilterHelper.new(alice) } + let(:helper) { Glitch::KeywordMuteHelper.new(alice) } it 'ignores names of HTML tags in status text' do status = Fabricate(:status, text: '<addr>uh example</addr>') |