Fix broken test
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
bb74656348
commit
00bcdbab37
1 changed files with 2 additions and 2 deletions
|
@ -112,8 +112,8 @@ export function tests() {
|
|||
},
|
||||
|
||||
"Link ends with <": assert => {
|
||||
const link = "https://matrxi.org";
|
||||
const out = [{ type: "link", text: link }, { type: "text", text: "<" }];
|
||||
const link = "https://matrix.org<";
|
||||
const out = [{ type: "link", text: "https://matrix.org" }, { type: "text", text: "<" }];
|
||||
test(assert, link, out);
|
||||
}
|
||||
};
|
||||
|
|
Reference in a new issue