From ed75ef900a68efcc117bf2ecba11cc06768b2183 Mon Sep 17 00:00:00 2001 From: Pedro Igor Date: Wed, 4 Jan 2017 13:06:08 -0200 Subject: [PATCH] [KEYCLOAK-3517] - Removing SAML ECP from expected flows. ECP already tested in other places. --- .../testsuite/admin/authentication/InitialFlowsTest.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/admin/authentication/InitialFlowsTest.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/admin/authentication/InitialFlowsTest.java index 0ec5c8c0aa..0481518518 100644 --- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/admin/authentication/InitialFlowsTest.java +++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/admin/authentication/InitialFlowsTest.java @@ -196,13 +196,6 @@ public class InitialFlowsTest extends AbstractAuthenticationTest { addExecInfo(execs, "Reset OTP", "reset-otp", false, 0, 3, OPTIONAL, null, new String[]{REQUIRED, OPTIONAL, DISABLED}); expected.add(new FlowExecutions(flow, execs)); - flow = newFlow("saml ecp", "SAML ECP Profile Authentication Flow", "basic-flow", true, true); - addExecExport(flow, null, false, "http-basic-authenticator", false, null, REQUIRED, 10); - - execs = new LinkedList<>(); - addExecInfo(execs, "HTTP Basic Authentication", "http-basic-authenticator", false, 0, 0, REQUIRED, null, new String[]{}); - expected.add(new FlowExecutions(flow, execs)); - return expected; }