keycloak-memoizeit

fix pom

7/27/2016 11:37:16 AM

Details

diff --git a/testsuite/integration/pom.xml b/testsuite/integration/pom.xml
index 2183e12..0e3c17c 100755
--- a/testsuite/integration/pom.xml
+++ b/testsuite/integration/pom.xml
@@ -245,11 +245,6 @@
             <scope>test</scope>
         </dependency>
         <dependency>
-            <groupId>org.picketlink</groupId>
-            <artifactId>picketlink-federation</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
             <groupId>org.wildfly</groupId>
             <artifactId>wildfly-undertow</artifactId>
             <scope>test</scope>
diff --git a/testsuite/integration/src/test/java/org/keycloak/testsuite/saml/ValidationTest.java b/testsuite/integration/src/test/java/org/keycloak/testsuite/saml/ValidationTest.java
index 290bdae..43638e0 100644
--- a/testsuite/integration/src/test/java/org/keycloak/testsuite/saml/ValidationTest.java
+++ b/testsuite/integration/src/test/java/org/keycloak/testsuite/saml/ValidationTest.java
@@ -16,6 +16,7 @@
  */
 package org.keycloak.testsuite.saml;
 
+import org.junit.Assert;
 import org.junit.Ignore;
 import org.junit.Test;
 import org.keycloak.common.util.PemUtils;
@@ -74,6 +75,7 @@ public class ValidationTest {
         } catch (SAXException e) {
             System.out.println(xmlFile.getSystemId() + " is NOT valid");
             System.out.println("Reason: " + e.getLocalizedMessage());
+            Assert.fail();
         }
     }
     @Test
@@ -93,6 +95,7 @@ public class ValidationTest {
         } catch (SAXException e) {
             System.out.println(xmlFile.getSystemId() + " is NOT valid");
             System.out.println("Reason: " + e.getLocalizedMessage());
+            Assert.fail();
         }
     }
 }