# HG changeset patch # User Anton Shestakov # Date 1607399914 -28800 # Node ID f65b2a978a1e613db24c215ac2ae05b42b0f325e # Parent d0f73113fcc0f2121e3ffe92670df2c105b6d811 tests: make sure test-prev-next.t hits lock warning timeout every time The test case explicitly uses fake-editor.sh with sleep 5 to test that hg prev and hg next both lock working directory properly. But recent upstream tweak in run-tests.py sets this timeout to 15, which is too high for this test. Let's set it back to its default value of 0. diff -r d0f73113fcc0 -r f65b2a978a1e tests/test-prev-next.t --- a/tests/test-prev-next.t Wed Dec 02 09:40:33 2020 +0800 +++ b/tests/test-prev-next.t Tue Dec 08 11:58:34 2020 +0800 @@ -328,6 +328,10 @@ $ hg init repo $ cd repo + $ cat >> .hg/hgrc << EOF + > [ui] + > timeout.warn = 0 + > EOF $ HGEDITOR="sh ${TESTDIR}/fake-editor.sh" $ echo hi > foo $ hg ci -Am 'one'