Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Nov 8, 2024
1 parent 7dcbdfb commit 5758d2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/TestIM.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def test_19_addresource(self):
Test AddResource function
"""
(success, res) = self.server.AddResource(
self.inf_id, RADL_ADD_WIN, self.auth_data)
self.inf_id, RADL_ADD, self.auth_data)
self.assertTrue(success, msg="ERROR calling AddResource: " + str(res))

(success, vm_ids) = self.server.GetInfrastructureInfo(
Expand All @@ -272,7 +272,7 @@ def test_19_addresource(self):
str(len(vm_ids)) + "). It must be 4"))

all_configured = self.wait_inf_state(
self.inf_id, VirtualMachine.CONFIGURED, 2700)
self.inf_id, VirtualMachine.CONFIGURED, 2400)
self.assertTrue(
all_configured, msg="ERROR waiting the infrastructure to be configured (timeout).")

Expand Down

0 comments on commit 5758d2e

Please sign in to comment.