From 8ea8d34cb50e2971781118cfb6a304de79c35c4f Mon Sep 17 00:00:00 2001 From: Clay McCoy Date: Thu, 4 Dec 2014 13:19:01 -0800 Subject: [PATCH] fix copy paste error --- test/unit/com/netflix/asgard/InstanceTypeControllerTests.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/com/netflix/asgard/InstanceTypeControllerTests.groovy b/test/unit/com/netflix/asgard/InstanceTypeControllerTests.groovy index a2ae5540..5bc763ce 100644 --- a/test/unit/com/netflix/asgard/InstanceTypeControllerTests.groovy +++ b/test/unit/com/netflix/asgard/InstanceTypeControllerTests.groovy @@ -35,7 +35,7 @@ class InstanceTypeControllerTests { assert 31 <= types.size() assert 'c1.medium' == types[0].name InstanceTypeData m1Small = types.find { it.name == 'm1.small' } - assert 'Small (Default)' == m1Small.hardwareProfile.sizeDeploymentWorkflowSpec + assert 'Small (Default)' == m1Small.hardwareProfile.size assert '3.75' == types.find { it.name == 'm1.medium' }.hardwareProfile.mem assert '68.4' == types.find { it.name == 'm2.4xlarge' }.hardwareProfile.mem InstanceTypeData c1medium = types.find { it.name == 'c1.medium' }