Author: ggregory
Date: Thu Aug  8 02:57:13 2013
New Revision: 1511562

URL: http://svn.apache.org/r1511562
Log:
[VFS-483][RAM] Many suggestions to improve the RAM file provider. Use long for 
FS size limit.

Modified:
    
commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java

Modified: 
commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java?rev=1511562&r1=1511561&r2=1511562&view=diff
==============================================================================
--- 
commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java
 (original)
+++ 
commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/ram/test/CustomRamProviderTest.java
 Thu Aug  8 02:57:13 2013
@@ -99,8 +99,8 @@ public class CustomRamProviderTest
         manager.init();
 
         // File Systems Options
-        RamFileSystemConfigBuilder.getInstance().setMaxSize(zeroSized, 0);
-        RamFileSystemConfigBuilder.getInstance().setMaxSize(smallSized, 10);
+        RamFileSystemConfigBuilder.getInstance().setMaxSize(zeroSized, 0L);
+        RamFileSystemConfigBuilder.getInstance().setMaxSize(smallSized, 10L);
     }
 
     @After


Reply via email to