Commit 366a387d authored by Eteri's avatar Eteri

uncomment assert in utils.py

parent 221f95c4
......@@ -127,7 +127,7 @@ class SlapOSInstanceTestCase(unittest.TestCase):
software_status_dict = slapos_controler.runSoftwareRelease(config, environment=os.environ)
# TODO: log more details in this case
# assert software_status_dict['status_code'] == 0
assert software_status_dict['status_code'] == 0
instance_parameter_dict = cls.getInstanceParameterDict()
instance_status_dict = slapos_controler.runComputerPartition(
......@@ -135,7 +135,7 @@ class SlapOSInstanceTestCase(unittest.TestCase):
cluster_configuration=instance_parameter_dict,
environment=os.environ)
# TODO: log more details in this case
# assert instance_status_dict['status_code'] == 0
assert instance_status_dict['status_code'] == 0
# FIXME: similar to test node, only one (root) partition is really supported for now.
computer_partition_list = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment