Skip to content

Commit 949a865

Browse files
committed
check if junit update solves anything
1 parent 44a1caf commit 949a865

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

jfuse-tests/src/test/java/org/cryptomator/jfuse/tests/MirrorIT.java

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,7 @@ public void setup(@TempDir Path tmpDir) throws IOException, FuseMountFailedExcep
7979
flags.add("-ogid=-1");
8080
yield new WindowsMirrorFileSystem(orig, builder.errno());
8181
}
82-
case LINUX -> {
83-
Files.createDirectories(mirror);
84-
yield new PosixMirrorFileSystem(orig, builder.errno());
85-
}
86-
case MAC -> {
87-
if (isFuseTLib()) {
88-
flags.add("-ononamedattr");
89-
}
82+
case LINUX, MAC -> {
9083
Files.createDirectories(mirror);
9184
yield new PosixMirrorFileSystem(orig, builder.errno());
9285
}
@@ -214,7 +207,6 @@ public void testReadFiles(String filename) throws IOException {
214207

215208
@Nested
216209
@DisabledOnOs(OS.WINDOWS) // see remark on https://github.com/cryptomator/jfuse/pull/26
217-
@DisabledIf("org.cryptomator.jfuse.tests.MirrorIT#isFuseTLib")
218210
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
219211
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
220212
@DisplayName("Extended Attributes")

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>org.junit.jupiter</groupId>
6363
<artifactId>junit-jupiter</artifactId>
64-
<version>5.12.1</version>
64+
<version>6.0.2</version>
6565
<scope>test</scope>
6666
</dependency>
6767
<dependency>

0 commit comments

Comments
 (0)