Skip to content

Commit d23e007

Browse files
author
infeo
committed
fixing test
1 parent 5f2da33 commit d23e007

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/cryptomator/cryptofs/CryptoFileSystemFileAttributeIntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ public void testLastModifiedDateUpdatesOnlyDuringWrite() throws IOException, Int
140140

141141
@Test
142142
public void testFileAttributeViewUpdatesAfterMove() throws IOException {
143-
Path oldpath = fileSystem.getPath("/a");
144-
Path newpath = fileSystem.getPath("/b");
143+
Path oldpath = fileSystem.getPath("/x");
144+
Path newpath = fileSystem.getPath("/y");
145145
try (FileChannel channel = FileChannel.open(oldpath, StandardOpenOption.CREATE_NEW, StandardOpenOption.WRITE)) {
146146
BasicFileAttributeView attrView = Files.getFileAttributeView(oldpath, BasicFileAttributeView.class);
147147
FileTime now = FileTime.from(Instant.ofEpochSecond(123456789L));

0 commit comments

Comments
 (0)