Unbork markdown parse test by making links match

This commit is contained in:
Julia 2023-10-12 16:18:54 -04:00
parent 85332eacbd
commit d23bb3b05d

View file

@ -911,7 +911,7 @@ mod tests {
// Links // Links
Row { Row {
blocks: vec![HoverBlock { blocks: vec![HoverBlock {
text: "one [two](the-url) three".to_string(), text: "one [two](https://the-url) three".to_string(),
kind: HoverBlockKind::Markdown, kind: HoverBlockKind::Markdown,
}], }],
expected_marked_text: "one «two» three".to_string(), expected_marked_text: "one «two» three".to_string(),
@ -932,7 +932,7 @@ mod tests {
- a - a
- b - b
* two * two
- [c](the-url) - [c](https://the-url)
- d" - d"
.unindent(), .unindent(),
kind: HoverBlockKind::Markdown, kind: HoverBlockKind::Markdown,