aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategyTest.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategyTest.java b/src/test/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategyTest.java
index daed53ec3d..b2fe0e6720 100644
--- a/src/test/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategyTest.java
+++ b/src/test/java/com/google/devtools/build/lib/sandbox/LinuxSandboxedStrategyTest.java
@@ -80,9 +80,7 @@ public class LinuxSandboxedStrategyTest extends LinuxSandboxedStrategyTestCase {
Path customMountPath = workspaceDir.getRelative(customMount);
mounts.put(customMountPath, customMountPath);
}
- return LinuxSandboxedStrategy.validateMounts(
- LinuxSandboxedStrategy.withResolvedSymlinks(
- LinuxSandboxedStrategy.withRecursedDirs(mounts.build())));
+ return ImmutableMap.copyOf(LinuxSandboxedStrategy.finalizeMounts(mounts.build()));
}
/**