From 419a7ab245a9e940cfed8d11fa604009a373d89a Mon Sep 17 00:00:00 2001 From: JaniruTEC <52893617+JaniruTEC@users.noreply.github.com> Date: Wed, 19 Jul 2023 23:53:58 +0200 Subject: [PATCH] Fixed faulty unit test --- .../org/cryptomator/common/mount/MountWithinParentUtilTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/cryptomator/common/mount/MountWithinParentUtilTest.java b/src/test/java/org/cryptomator/common/mount/MountWithinParentUtilTest.java index 715c47be1..240ac2dd7 100644 --- a/src/test/java/org/cryptomator/common/mount/MountWithinParentUtilTest.java +++ b/src/test/java/org/cryptomator/common/mount/MountWithinParentUtilTest.java @@ -121,7 +121,7 @@ class MountWithinParentUtilTest { prepareParentNoMountPoint(mount); assertTrue(Files.notExists(mount, NOFOLLOW_LINKS)); - assertTrue(isHidden(hideaway)); + assertTrue(!SystemUtils.IS_OS_WINDOWS || isHidden(hideaway)); } @Test