diff --git a/helix-core/src/surround.rs b/helix-core/src/surround.rs
index da54fe61a..2d4242b39 100644
--- a/helix-core/src/surround.rs
+++ b/helix-core/src/surround.rs
@@ -541,147 +541,6 @@ mod test {
);
}
- #[test]
- fn test_find_next_tag() {
- let doc = Rope::from("hello");
-
- assert_eq!(
- find_next_tag(doc.slice(..), 7, 1).unwrap(),
- (
- Range::new(12, 14),
- String::from("tag"),
- doc.to_string().len()
- )
- );
- }
-
- #[test]
- fn test_find_next_tag_broken() {
- let doc = Rope::from("hello");
-
- assert_eq!(
- find_next_tag(doc.slice(..), 7, 1).unwrap(),
- (
- Range::new(18, 28),
- String::from("Hello.World"),
- doc.to_string().len()
- )
- );
- }
-
- #[test]
- fn test_find_prev_tag() {
- let doc = Rope::from("hello");
-
- assert_eq!(
- find_prev_tag(doc.slice(..), 7, 1).unwrap(),
- (Range::new(1, 3), String::from("tag"), 0)
- );
- }
-
- #[test]
- fn test_find_prev_tag_broken() {
- let doc = Rope::from(" ");
-
- assert_eq!(
- find_prev_tag(doc.slice(..), 32, 1).unwrap(),
- (Range::new(1, 11), String::from("Hello.World"), 0)
- );
- }
-
- #[test]
- fn test_find_surrounding_tag_simple() {
- #[rustfmt::skip]
- let (doc, selection, _expectations) =
- rope_with_selections_and_expectations_tags(
- " simple example ",
- " ____ ^ ____ "
- );
-
- assert_eq!(
- get_surround_pos_tag(doc.slice(..), &selection, 1),
- Ok(vec![(
- (Range::new(1, 4), Range::new(24, 27)),
- String::from("html")
- )])
- );
- }
-
- // #[test]
- // fn test_find_surrounding_tag_with_imposter() {
- // #[rustfmt::skip]
- // let (doc, selection, expectations) =
- // rope_with_selections_and_expectations_tags(
- // " simple example