You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by ug...@apache.org on 2007/05/17 16:37:20 UTC

svn commit: r538945 - /incubator/abdera/java/trunk/security/src/test/java/org/apache/abdera/test/security/DSigThirdPartyVerifyTest.java

Author: ugo
Date: Thu May 17 07:37:20 2007
New Revision: 538945

URL: http://svn.apache.org/viewvc?view=rev&rev=538945
Log:
Swap expected and actual values in assertion.

Modified:
    incubator/abdera/java/trunk/security/src/test/java/org/apache/abdera/test/security/DSigThirdPartyVerifyTest.java

Modified: incubator/abdera/java/trunk/security/src/test/java/org/apache/abdera/test/security/DSigThirdPartyVerifyTest.java
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/security/src/test/java/org/apache/abdera/test/security/DSigThirdPartyVerifyTest.java?view=diff&rev=538945&r1=538944&r2=538945
==============================================================================
--- incubator/abdera/java/trunk/security/src/test/java/org/apache/abdera/test/security/DSigThirdPartyVerifyTest.java (original)
+++ incubator/abdera/java/trunk/security/src/test/java/org/apache/abdera/test/security/DSigThirdPartyVerifyTest.java Thu May 17 07:37:20 2007
@@ -105,7 +105,7 @@
     ClientResponse response = client.post(
       "http://verisignlabs.com/tg/verify", 
       bre, reqoptions);
-    assertEquals(response.getStatus(),200);
+    assertEquals(200, response.getStatus());
     Document<Element> result = response.getDocument();
     
     XPath xpath = abdera.getXPath();