diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-21 17:24:56 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-21 17:24:56 +0200 |
commit | 56ff5c73c7ec19b349e7d60d04ce1057c006d6ec (patch) | |
tree | b4107ae0e0219f871a2f2764215ad979b2b0d75f /tests | |
parent | 7effd171218fff68f051671f1373cee467a8f921 (diff) | |
download | markdown-rs-56ff5c73c7ec19b349e7d60d04ce1057c006d6ec.tar.gz markdown-rs-56ff5c73c7ec19b349e7d60d04ce1057c006d6ec.tar.bz2 markdown-rs-56ff5c73c7ec19b349e7d60d04ce1057c006d6ec.zip |
Make data a construct
Diffstat (limited to 'tests')
-rw-r--r-- | tests/autolink.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/autolink.rs b/tests/autolink.rs index 3882264..f0486ef 100644 --- a/tests/autolink.rs +++ b/tests/autolink.rs @@ -8,7 +8,7 @@ const DANGER: &Options = &Options { }; #[test] -fn code_fenced() { +fn autolink() { assert_eq!( micromark("```\n<\n >\n```"), "<pre><code><\n >\n</code></pre>", |