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 eb3dc181 Better local name
eb3dc181 is described below
commit eb3dc181d3f927f402998bdcdd0ebc94e7c7f346
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Nov 8 09:48:14 2023 -0500
Better local name
---
.../test/java/org/apache/commons/vfs2/AbstractProviderTestCase.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractProviderTestCase.java
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractProviderTestCase.java
index bee0e502..f4255659 100644
---
a/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractProviderTestCase.java
+++
b/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractProviderTestCase.java
@@ -227,9 +227,9 @@ public abstract class AbstractProviderTestCase extends
TestCase {
}
protected FileSystem getFileSystem() {
- final FileObject rFolder = getReadFolder();
- Assert.assertNotNull("This test's read folder should not be null",
rFolder);
- return rFolder.getFileSystem();
+ final FileObject readFolder = getReadFolder();
+ Assert.assertNotNull("This test's read folder should not be null",
readFolder);
+ return readFolder.getFileSystem();
}
/**