Skip to content

Commit 313419e

Browse files
committed
Fix assertion
1 parent c6b680e commit 313419e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commons-vfs2-hdfs/src/test/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileProviderTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ protected void setUp() throws Exception {
118118

119119
// Copy the test directory into HDFS
120120
final Path base = new Path("/test-data");
121-
assertTrue("Unable to create base directory", hdfs.mkdirs(base));
121+
assertTrue(hdfs.mkdirs(base), "Unable to create base directory");
122122
copyTestResources(getTestDirectoryFile(), base);
123123

124124
super.setUp();

0 commit comments

Comments
 (0)