You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ts...@apache.org on 2013/07/11 06:14:51 UTC

git commit: updated refs/heads/master to 3f5c1c6

Updated Branches:
  refs/heads/master 742bc8dc8 -> 3f5c1c6da


CLOUDSTACK-3384: Fix the vlan range < 4096

VLAN ranges beyond 4095 are properly handled. Fix the test to accomdate
this change

Signed-off-by: Prasanna Santhanam <ts...@apache.org>


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

Branch: refs/heads/master
Commit: 3f5c1c6da3d2152fdc966603f929c3ea880d8b60
Parents: 742bc8d
Author: Prasanna Santhanam <ts...@apache.org>
Authored: Thu Jul 11 09:41:17 2013 +0530
Committer: Prasanna Santhanam <ts...@apache.org>
Committed: Thu Jul 11 09:41:17 2013 +0530

----------------------------------------------------------------------
 test/integration/smoke/test_non_contigiousvlan.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/3f5c1c6d/test/integration/smoke/test_non_contigiousvlan.py
----------------------------------------------------------------------
diff --git a/test/integration/smoke/test_non_contigiousvlan.py b/test/integration/smoke/test_non_contigiousvlan.py
index 4e130d9..5fdc034 100644
--- a/test/integration/smoke/test_non_contigiousvlan.py
+++ b/test/integration/smoke/test_non_contigiousvlan.py
@@ -26,8 +26,8 @@ class Services():
     def __init__(self):
         self.services = {
             "vlan": {
-                "part": ["4090-4091", "4092-4096"],
-                "full": "4090-4096",
+                "part": ["4090-4091", "4092-4095"],
+                "full": "4090-4095",
             }
         }