diff --git a/helix-vcs/src/git/blame.rs b/helix-vcs/src/git/blame.rs
index d2d4416c..c8ec987b 100644
--- a/helix-vcs/src/git/blame.rs
+++ b/helix-vcs/src/git/blame.rs
@@ -417,6 +417,7 @@ mod test {
                 "}" 1,
                 "  five" 5,
                 "  four" 5;
+            // several lines deleted
             5 no_commit =>
                 "  six" 5,
                 "  three" 5,
@@ -429,6 +430,14 @@ mod test {
                 "}" 1,
                 "  five" 5,
                 "  four" 5;
+            // committing the deleted changes
+            6 =>
+                "  six" 5,
+                "  three" 5,
+                "  four" 5,
+                "}" 1,
+                "  five" 5,
+                "  four" 5;
         };
     }