Skip to content

Commit

Permalink
fix: change filter title to not multilingual word
Browse files Browse the repository at this point in the history
  • Loading branch information
smilephoenix103 committed Jan 26, 2023
1 parent 2ab9783 commit cf8e4bc
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,9 @@ describe('filter', function () {
assert(filter.clean('hello there') === 'hello there');
});

it('Should not replace anything of a single , multilingual and not profane word', function () {
it('Should not replace anything of a single and not profane word', function () {
assert(filter.clean('áéñóú') === 'áéñóú');
});

it('Should not replace anything of a single , multilingual and not profane word', function () {
assert(filter.clean('áéñóúáéñ') === 'áéñóúáéñ');
});

});
});

0 comments on commit cf8e4bc

Please sign in to comment.