aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_utils/hast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_utils/hast.rs')
-rw-r--r--tests/test_utils/hast.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_utils/hast.rs b/tests/test_utils/hast.rs
index bc8f472..09a180a 100644
--- a/tests/test_utils/hast.rs
+++ b/tests/test_utils/hast.rs
@@ -6,14 +6,14 @@
// ^-- To do: externalize.
extern crate alloc;
-extern crate micromark;
+extern crate markdown;
use alloc::{
fmt,
string::{String, ToString},
vec::Vec,
};
-pub use micromark::mdast::{AttributeContent, AttributeValue, MdxJsxAttribute, Stop};
-use micromark::unist::Position;
+pub use markdown::mdast::{AttributeContent, AttributeValue, MdxJsxAttribute, Stop};
+use markdown::unist::Position;
/// Nodes.
#[derive(Clone, PartialEq, Eq)]