We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97b6429 commit e643a54Copy full SHA for e643a54
jfuse-tests/src/test/java/org/cryptomator/jfuse/tests/MirrorIT.java
@@ -237,6 +237,9 @@ public void testSetxattr(String attrName) {
237
var attrValue = StandardCharsets.UTF_8.encode(attrName);
238
239
Assertions.assertDoesNotThrow(() -> attrView.write(attrName, attrValue));
240
+ var expectedWrittenBytes = attrValue.limit();
241
+ int bytesWritten = Assertions.assertDoesNotThrow(() -> attrView.write(attrName, attrValue));
242
+ Assertions.assertEquals(expectedWrittenBytes, bytesWritten, "The extended attribute %s was not completely written.".formatted(attrName));
243
}
244
245
@Order(2)
0 commit comments