On 2020.11.26 20:41, Rafael Silva wrote: > diff --git a/t/t7900-maintenance.sh b/t/t7900-maintenance.sh > index d9e68bb2bf..ae5c29b0ff 100755 > --- a/t/t7900-maintenance.sh > +++ b/t/t7900-maintenance.sh > @@ -441,4 +441,12 @@ test_expect_success 'register preserves existing strategy' ' > test_config maintenance.strategy incremental > ' > > +test_execpt_success 'fails when running outside of a repository' ' > + nongit test_must_fail git maintenance run && > + nongit test_must_fail git maintenance stop && > + nongit test_must_fail git maintenance start && > + nongit test_must_fail git maintenance register && > + nongit test_must_fail git maintenance unregister > +' > + > test_done Caught a typo here, sending this as a squash patch since it's already in next: -- >8 -- Subject: [PATCH] t7900: fix typo: "test_execpt_success" Signed-off-by: Josh Steadmon <steadmon@xxxxxxxxxx> --- t/t7900-maintenance.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t7900-maintenance.sh b/t/t7900-maintenance.sh index 4ca3617173..8c061197a6 100755 --- a/t/t7900-maintenance.sh +++ b/t/t7900-maintenance.sh @@ -441,7 +441,7 @@ test_expect_success 'register preserves existing strategy' ' test_config maintenance.strategy incremental ' -test_execpt_success 'fails when running outside of a repository' ' +test_expect_success 'fails when running outside of a repository' ' nongit test_must_fail git maintenance run && nongit test_must_fail git maintenance stop && nongit test_must_fail git maintenance start && -- 2.29.2.576.ga3fc446d84-goog