aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/test/java/com/yahoo/vespa/hosted/node/admin/task/util/fs/ContainerFileSystemTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'node-admin/src/test/java/com/yahoo/vespa/hosted/node/admin/task/util/fs/ContainerFileSystemTest.java')
-rw-r--r--node-admin/src/test/java/com/yahoo/vespa/hosted/node/admin/task/util/fs/ContainerFileSystemTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/node-admin/src/test/java/com/yahoo/vespa/hosted/node/admin/task/util/fs/ContainerFileSystemTest.java b/node-admin/src/test/java/com/yahoo/vespa/hosted/node/admin/task/util/fs/ContainerFileSystemTest.java
index a5fc6a1373f..4e85052a176 100644
--- a/node-admin/src/test/java/com/yahoo/vespa/hosted/node/admin/task/util/fs/ContainerFileSystemTest.java
+++ b/node-admin/src/test/java/com/yahoo/vespa/hosted/node/admin/task/util/fs/ContainerFileSystemTest.java
@@ -85,7 +85,7 @@ class ContainerFileSystemTest {
new UnixPath(destination).setOwnerId(500).setGroupId(200);
ContainerPath destination2 = ContainerPath.fromPathInContainer(containerFs, Path.of("/dest2"));
Files.copy(destination, destination2, StandardCopyOption.COPY_ATTRIBUTES, StandardCopyOption.REPLACE_EXISTING);
- assertOwnership(destination2, 0, 0, 10000, 11000);
+ assertOwnership(destination2, 500, 200, 10500, 11200);
}
@Test
@@ -116,7 +116,7 @@ class ContainerFileSystemTest {
new UnixPath(destination).setOwnerId(500).setGroupId(200);
ContainerPath destination2 = ContainerPath.fromPathInContainer(containerFs, Path.of("/dest2"));
Files.move(destination, destination2, StandardCopyOption.COPY_ATTRIBUTES, StandardCopyOption.REPLACE_EXISTING);
- assertOwnership(destination2, 0, 0, 10000, 11000);
+ assertOwnership(destination2, 500, 200, 10500, 11200);
}
@Test