Skip to content

Commit 3d93349

Browse files
authored
Merge pull request #65 from indigo-dc/fix_test
Fix error in test
2 parents efba5c4 + 11a09a9 commit 3d93349

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/test/java/es/upv/i3m/grycap/im/InfrastructureManagerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public void testGetVmInfo() throws ImClientException {
182182
Map<?, ?> internalInfo = (Map<String, Object>) vmProperties.get(2);
183183
List<?> applications = (List<?>) internalInfo.get("disk.0.applications");
184184
Map<?, ?> applicationsInfo = (Map<?, ?>) applications.get(0);
185-
Assert.assertEquals("ansible.modules.indigo-dc.zabbix-agent",
185+
Assert.assertEquals("ansible.modules.indigo-dc.galaxycloud",
186186
applicationsInfo.get("name"));
187187
}
188188

src/test/resources/tosca/elastic-cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
tosca_definitions_version: tosca_simple_yaml_1_0
22

33
imports:
4-
- indigo_custom_types: https://raw.githubusercontent.com/indigo-dc/tosca-types/master/custom_types.yaml
4+
- indigo_custom_types: https://raw.githubusercontent.com/indigo-dc/tosca-types/v2.0.0/custom_types.yaml
55

66
description: >
77
TOSCA test for launching a Virtual Elastic Cluster. It will launch

src/test/resources/tosca/galaxy_tosca.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
tosca_definitions_version: tosca_simple_yaml_1_0
22

33
imports:
4-
- indigo_custom_types: https://raw.githubusercontent.com/indigo-dc/tosca-types/master/custom_types.yaml
4+
- indigo_custom_types: https://raw.githubusercontent.com/indigo-dc/tosca-types/v2.0.0/custom_types.yaml
55

66
description: >
77
TOSCA template for deploying a Galaxy Server using a local LRMS.

src/test/resources/tosca/galaxy_tosca_2_nodes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
tosca_definitions_version: tosca_simple_yaml_1_0
22

33
imports:
4-
- indigo_custom_types: https://raw.githubusercontent.com/indigo-dc/tosca-types/master/custom_types.yaml
4+
- indigo_custom_types: https://raw.githubusercontent.com/indigo-dc/tosca-types/v2.0.0/custom_types.yaml
55

66
description: >
77
TOSCA test for launching a Galaxy Server also configuring the bowtie2

0 commit comments

Comments
 (0)