> @@ -69,7 +69,7 @@ public void testExtractArchive() throws Exception {
>                                                       
> .extractArchive(containerName, payload, "tar.gz");
>           assertEquals(extractResponse.getCreated(), OBJECT_COUNT);
>           assertTrue(extractResponse.getErrors().isEmpty());
> -         
> assertEquals(api.getContainerApi(regionId).get(containerName).getObjectCount(),
>  OBJECT_COUNT);
> +         
> assertEquals(api.getContainerApi(regionId).get(containerName).getObjectCount(),
>  Long.valueOf(OBJECT_COUNT));

Is this needed (here and elsewhere)? If you let OBJECT_COUNT be autoboxed, the 
test spec will reflect the backwards compatibility of the change, as least in 
source, as was mentioned. Thoughts?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/923/files#r54118030

Reply via email to