Fix broken test

Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
RMidhunSuresh 2021-05-12 16:15:07 +05:30
parent bb74656348
commit 00bcdbab37

View file

@ -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);
}
};