fix DomainTest

This commit is contained in:
Peter Hormanns 2012-07-18 17:28:47 +00:00
parent a78ddfc29a
commit 439389ea28

View File

@ -168,7 +168,7 @@ public class DomainTest {
try {
Object execute = client.execute(MODULE + ".update", params);
assertNotNull(execute);
assertEquals(getDomOptionsCount(),1);
assertEquals(getDomOptionsCount(), 1);
} catch (XmlRpcException e) {
fail(e.getMessage());
}
@ -253,7 +253,9 @@ public class DomainTest {
Map<String, ?> domainMap = (Map<String, ?>) result[0];
assertNotNull(domainMap);
List<?> optsList = (List<?>)domainMap.get("domainsoptions");
assertNotNull(optsList);
if (optsList == null) {
count = 0;
}
count = optsList.size();
} catch (XmlRpcException e) {
fail(e.getMessage());