--- a/tests/test-fix.t Thu Dec 12 14:28:31 2019 -0800
+++ b/tests/test-fix.t Fri Dec 06 20:40:02 2019 -0500
@@ -1335,24 +1335,20 @@
Apparently fixing p1() and its descendants doesn't include wdir() unless
explicitly stated.
-BROKEN: fileset matches aren't relative to repo.root for commits
-
$ hg fix -r '.::'
$ hg cat -r . ../quux
quux
$ hg cat -r tip ../quux
- quux
+ fs: $TESTTMP/subprocesscwd
$ cat ../quux
quux
Clean files are not fixed unless explicitly named
$ echo 'dirty' > ../quux
-BROKEN: fileset matches aren't relative to repo.root for wdir
-
$ hg fix --working-dir
$ cat ../quux
- dirty
+ fs: $TESTTMP/subprocesscwd
$ cd ../..