Author: bodewig
Date: Thu Feb 19 14:29:16 2009
New Revision: 745884
URL: http://svn.apache.org/viewvc?rev=745884&view=rev
Log:
Adapt to ASF infrastructure change
Modified:
ant/core/trunk/src/tests/antunit/taskdefs/hostinfo-test.xml
Modified: ant/core/trunk/src/tests/antunit/taskdefs/hostinfo-test.xml
URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/tests/antunit/taskdefs/hostinfo-test.xml?rev=745884&r1=745883&r2=745884&view=diff
==============================================================================
--- ant/core/trunk/src/tests/antunit/taskdefs/hostinfo-test.xml (original)
+++ ant/core/trunk/src/tests/antunit/taskdefs/hostinfo-test.xml Thu Feb 19
14:29:16 2009
@@ -29,8 +29,8 @@
<property name="apache-hostname" value="www.apache.org" />
<property name="apache-domain" value="apache.org" />
- <property name="apache-realhost" value="eos" />
- <property name="apache-ip4" value="140.211.11.130" />
+ <property name="apache-realhost" value="aurora" />
+ <property name="apache-ip4" value="192.87.106.226" />
<property name="xs4all-hostname" value="www.xs4all.nl" />
<property name="xs4all-domain" value="xs4all.nl" />
@@ -47,13 +47,9 @@
<target name="testApache" depends="setUp">
<hostinfo prefix="apache" host="${apache-hostname}"/>
- <au:assertTrue>
- <and>
- <equals arg1="${apache.NAME}" arg2="${apache-realhost}" />
- <equals arg1="${apache.DOMAIN}" arg2="${apache-domain}" />
- <equals arg1="${apache.ADDR4}" arg2="${apache-ip4}" />
- </and>
- </au:assertTrue>
+ <au:assertEquals expected="${apache-realhost}" actual="${apache.NAME}"/>
+ <au:assertEquals expected="${apache-domain}" actual="${apache.DOMAIN}"/>
+ <au:assertEquals expected="${apache-ip4}" actual="${apache.ADDR4}"/>
</target>
<target name="testApacheNoPrefix" depends="setUp">