We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 184d98f commit f8448b3Copy full SHA for f8448b3
server/src/test/java/org/apache/cloudstack/storage/object/BucketApiServiceImplTest.java
@@ -110,7 +110,7 @@ public void testCreateBucket() {
110
111
ObjectStoreVO objectStoreVO = Mockito.mock(ObjectStoreVO.class);
112
Mockito.when(objectStoreVO.getId()).thenReturn(objectStoreId);
113
- Mockito.when(objectStoreVO.getTotalSize()).thenReturn(20000000L);
+ Mockito.when(objectStoreVO.getTotalSize()).thenReturn(2000000000L);
114
Mockito.when(objectStoreDao.findById(poolId)).thenReturn(objectStoreVO);
115
ObjectStoreEntity objectStore = Mockito.mock(ObjectStoreEntity.class);
116
Mockito.when(dataStoreMgr.getDataStore(objectStoreId, DataStoreRole.Object)).thenReturn(objectStore);
0 commit comments