Stephan Beyer wrote: > @@ -380,7 +397,7 @@ test_expect_success 'interrupted squash works as expected' ' > ! FAKE_LINES="1 squash 3 2" git rebase -i HEAD~3 && These can be converted to use test_must_fail by using a sub-shell as Junio demonstrated: ( FAKE_LINES="1 squash 3 2" && export FAKE_LINES && test_must_fail git rebase -i HEAD~3 ) && -brandon -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html