You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by al...@apache.org on 2014/03/17 17:58:53 UTC

git commit: updated refs/heads/master to 479986e

Repository: cloudstack
Updated Branches:
  refs/heads/master 78a04c531 -> 479986e52


Fixed compilation error in StorageAllocatorTest.java


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/479986e5
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/479986e5
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/479986e5

Branch: refs/heads/master
Commit: 479986e52bc322fd3c1b92c9821a7abd6a3d2afc
Parents: 78a04c5
Author: Alena Prokharchyk <al...@citrix.com>
Authored: Mon Mar 17 09:58:44 2014 -0700
Committer: Alena Prokharchyk <al...@citrix.com>
Committed: Mon Mar 17 09:58:44 2014 -0700

----------------------------------------------------------------------
 .../cloudstack/storage/allocator/StorageAllocatorTest.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/479986e5/engine/storage/integration-test/test/org/apache/cloudstack/storage/allocator/StorageAllocatorTest.java
----------------------------------------------------------------------
diff --git a/engine/storage/integration-test/test/org/apache/cloudstack/storage/allocator/StorageAllocatorTest.java b/engine/storage/integration-test/test/org/apache/cloudstack/storage/allocator/StorageAllocatorTest.java
index a03125d..3c4caee 100644
--- a/engine/storage/integration-test/test/org/apache/cloudstack/storage/allocator/StorageAllocatorTest.java
+++ b/engine/storage/integration-test/test/org/apache/cloudstack/storage/allocator/StorageAllocatorTest.java
@@ -251,7 +251,7 @@ public class StorageAllocatorTest {
     public void testClusterAllocatorWithTags() {
         try {
             createDb();
-            StoragePoolDetailVO detailVO = new StoragePoolDetailVO(this.storagePoolId, "high", "true", display);
+            StoragePoolDetailVO detailVO = new StoragePoolDetailVO(this.storagePoolId, "high", "true", true);
             poolDetailsDao.persist(detailVO);
             DiskOfferingVO diskOff = this.diskOfferingDao.findById(diskOffering.getId());
             List<String> tags = new ArrayList<String>();
@@ -285,7 +285,7 @@ public class StorageAllocatorTest {
     public void testClusterAllocatorWithWrongTag() {
         try {
             createDb();
-            StoragePoolDetailVO detailVO = new StoragePoolDetailVO(this.storagePoolId, "high", "true", display);
+            StoragePoolDetailVO detailVO = new StoragePoolDetailVO(this.storagePoolId, "high", "true", true);
             poolDetailsDao.persist(detailVO);
             DiskOfferingVO diskOff = this.diskOfferingDao.findById(diskOffering.getId());
             List<String> tags = new ArrayList<String>();