diff -r 0583d7f0fdff -r 9987d14ad63f tests/test-rename.t --- a/tests/test-rename.t Sun Feb 20 15:31:33 2022 -0700 +++ b/tests/test-rename.t Sun Feb 20 15:35:09 2022 -0700 @@ -682,7 +682,6 @@ "hg cp" does not preserve the mtime, so it should be newer than the 2009 timestamp. $ hg cp -q mtime mtime_cp - >>> from __future__ import print_function >>> import os >>> filename = "mtime_cp/f" >>> print(os.stat(filename).st_mtime < 1234567999) @@ -691,7 +690,6 @@ (modulo some fudge factor due to not every system supporting 1s-level precision). $ hg mv -q mtime mtime_mv - >>> from __future__ import print_function >>> import os >>> filename = "mtime_mv/f" >>> print(os.stat(filename).st_mtime < 1234567999)