> @@ -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));

I left my comment at the wrong line. Sorry! There were a few Long.valueOf() 
such as 

> .objectCount(Long.valueOf(2))

that I think are not necessary, as long would be converted to Long 
automatically in that case.

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

Reply via email to