> }
>
> @Test(groups = { "integration", "live" }, dependsOnMethods = {
> "testCreateVault" })
> public void testListMultipartUploadsWithEmptyList() throws Exception {
> - assertEquals(api.listMultipartUploads(VAULT_NAME1).size(), 0);
> + assertThat(api.listMultipartUploads(VAULT_NAME1)).hasSize(0);Is there an `isEmpty()` method? ;-) --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-aws/pull/32/files#r14413854
