> @@ -57,7 +57,7 @@
> public class RegionScopedSwiftBlobStoreParallelLiveTest extends
> BaseBlobStoreIntegrationTest {
>
> private final File BIG_FILE = new File("random.dat");
> - private final long SIZE = 1000000000; //10 * 1000 * 1000;
> + private final long SIZE = 10000000; //10 * 1000 * 1000;
Instead of the comment, could you just say:
```java
private static final long SIZE = 10 * 1000 * 1000;
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1010/files/304c72c3e24e376cebbb98bd3b8f8ad6ecd72dac#r78608484