mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-24 17:28:40 +00:00
Unbork markdown parse test by making links match
This commit is contained in:
parent
85332eacbd
commit
d23bb3b05d
1 changed files with 2 additions and 2 deletions
|
@ -911,7 +911,7 @@ mod tests {
|
|||
// Links
|
||||
Row {
|
||||
blocks: vec![HoverBlock {
|
||||
text: "one [two](the-url) three".to_string(),
|
||||
text: "one [two](https://the-url) three".to_string(),
|
||||
kind: HoverBlockKind::Markdown,
|
||||
}],
|
||||
expected_marked_text: "one «two» three".to_string(),
|
||||
|
@ -932,7 +932,7 @@ mod tests {
|
|||
- a
|
||||
- b
|
||||
* two
|
||||
- [c](the-url)
|
||||
- [c](https://the-url)
|
||||
- d"
|
||||
.unindent(),
|
||||
kind: HoverBlockKind::Markdown,
|
||||
|
|
Loading…
Reference in a new issue