We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ebfc53 commit f4c7a88Copy full SHA for f4c7a88
1 file changed
internal/fileutil/path_util_test.go
@@ -738,7 +738,7 @@ func TestResolvePath_ReturnsLexicalPath_SymlinkLeafPreserved(t *testing.T) {
738
if err != nil {
739
t.Fatalf("Abs(%q): %v", tc.input, err)
740
}
741
- expAbs = filepath.Clean(expAbs)
+ expAbs = filepath.Clean(ApplyDarwinSystemRootAliases(expAbs))
742
if filepath.Clean(got) != expAbs {
743
t.Fatalf("expected lexical symlink path returned.\n got=%q\n want=%q", got, expAbs)
744
0 commit comments