andrewgaul commented on this pull request.
> @@ -121,7 +126,7 @@ public void uploadMultipartBlob() {
@Test(dependsOnMethods = "uploadMultipartBlob", singleThreaded = true)
public void downloadParallelBlob() throws IOException {
- final File downloadedFile = new File(BIG_FILE.getName() + ".downloaded");
+ final File downloadedFile = new File(BIG_FILE + ".downloaded");
Not the case because each test method gets its own `BIG_FILE`. Further these
tests run single-threaded due to the annotation and the dependency.
--
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/1035