user-groups: Recognize single asterisk for group mentions.

The character combination of @* now begins a group mention, so
this test is no longer valid.
This commit is contained in:
Umair Khan 2017-11-24 11:11:11 +05:00 committed by Tim Abbott
parent c78846a274
commit 90994bccac
1 changed files with 2 additions and 2 deletions

View File

@ -210,8 +210,8 @@ var bugdown_data = JSON.parse(fs.readFileSync(path.join(__dirname, '../../zerver
expected: '<p>These @ @<em>**</em> are not mentions</p>'},
{input: 'These # #**** are not mentions',
expected: '<p>These # #<em>**</em> are not mentions</p>'},
{input: 'These @* @*** are not mentions',
expected: '<p>These @* @*** are not mentions</p>'},
{input: 'These @* are not mentions',
expected: '<p>These @* are not mentions</p>'},
{input: 'These #* #*** are also not mentions',
expected: '<p>These #* #*** are also not mentions</p>'},
{input: 'This is a #**Denmark** stream link',