Author: dkulp
Date: Mon Oct 3 18:15:40 2011
New Revision: 1178490
URL: http://svn.apache.org/viewvc?rev=1178490&view=rev
Log:
Merged revisions 1178485 via svnmerge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r1178485 | dkulp | 2011-10-03 14:11:20 -0400 (Mon, 03 Oct 2011) | 1 line
Fix test case with comparison to new error message
........
Modified:
cxf/branches/2.4.x-fixes/ (props changed)
cxf/branches/2.4.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/cxf2006/RespectBindingFeatureClientServerTest.java
Propchange: cxf/branches/2.4.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.4.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/cxf2006/RespectBindingFeatureClientServerTest.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/cxf2006/RespectBindingFeatureClientServerTest.java?rev=1178490&r1=1178489&r2=1178490&view=diff
==============================================================================
---
cxf/branches/2.4.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/cxf2006/RespectBindingFeatureClientServerTest.java
(original)
+++
cxf/branches/2.4.x-fixes/systests/uncategorized/src/test/java/org/apache/cxf/cxf2006/RespectBindingFeatureClientServerTest.java
Mon Oct 3 18:15:40 2011
@@ -47,8 +47,8 @@ public class RespectBindingFeatureClient
fail("WebServiceException is expected");
} catch (Exception ex) {
assertTrue("WebServiceException is expected", ex instanceof
javax.xml.ws.WebServiceException);
- assertTrue("RespectBindingFeature message is expceted",
- ex.getMessage().indexOf("extensions that have the
required=true attribute") > -1);
+ assertTrue("RespectBindingFeature message is expceted: " +
ex.getMessage(),
+ ex.getMessage().indexOf("extension with required=true
attribute") > -1);
}
}