This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-vfs.git
The following commit(s) were added to refs/heads/master by this push: new e67e2a55 Test properties to find out more about macOS failures on GitHub CI e67e2a55 is described below commit e67e2a55b4bd50559709648f87032b066c586e05 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Aug 29 10:34:45 2024 -0400 Test properties to find out more about macOS failures on GitHub CI --- commons-vfs2/src/test/java/org/apache/commons/vfs2/UriTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commons-vfs2/src/test/java/org/apache/commons/vfs2/UriTests.java b/commons-vfs2/src/test/java/org/apache/commons/vfs2/UriTests.java index b28071d3..d8f9fb63 100644 --- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/UriTests.java +++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/UriTests.java @@ -62,8 +62,8 @@ public class UriTests extends AbstractProviderTestCase { assertEquals(readFolder.isWriteable(), file.isWriteable()); assertEquals(readFolder.toString(), file.toString()); // compare objects - assertEquals("file object", readFolder, file); - assertSame("file object", readFolder, file); + assertEquals("file object " + readFolder.getClass() + ", " + file.getClass(), readFolder, file); + assertSame("file object " + readFolder.getClass() + ", " + file.getClass(), readFolder, file); // Try fetching the filesystem root by its URI final String rootUri = readFolder.getName().getRootURI(); file = getManager().resolveFile(rootUri, readFolder.getFileSystem().getFileSystemOptions());