Skip to content

Commit 651e8d3

Browse files
authored
Merge pull request #358 from GraciesPadre/fix_integration_tests
Renaming an ambiguoulsy-named function.
2 parents fc08e58 + 3b0f17d commit 651e8d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ds3-sdk-integration/src/test/java/com/spectralogic/ds3client/integration/GetJobManagement_Test.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public void createReadJobWithBigFile() throws IOException, URISyntaxException, N
180180

181181
} finally {
182182
FileUtils.deleteDirectory(tempDirectory.toFile());
183-
deleteBigFile();
183+
deleteBigFileFromBlackPearlBucket();
184184
}
185185
}
186186

@@ -211,7 +211,7 @@ private void putBigFile() throws IOException, URISyntaxException {
211211
writeJob.transfer(new FileObjectPutter(dirPath));
212212
}
213213

214-
private void deleteBigFile() throws IOException {
214+
private void deleteBigFileFromBlackPearlBucket() throws IOException {
215215
final Ds3ClientHelpers helpers = Ds3ClientHelpers.wrap(client);
216216

217217
final Iterable<Contents> objects = helpers.listObjects(BUCKET_NAME);
@@ -306,7 +306,7 @@ public void testPartialRetriesWithInjectedFailures() throws NoSuchMethodExceptio
306306
}
307307
} finally {
308308
FileUtils.deleteDirectory(tempDirectory.toFile());
309-
deleteBigFile();
309+
deleteBigFileFromBlackPearlBucket();
310310
}
311311
}
312312
}

0 commit comments

Comments
 (0)