Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2013-05-01 23:07:37 +0000
committerJan Bartel2013-05-01 23:07:37 +0000
commitfb43fd4c9e3203c6efe3785414ad157c8b00fa93 (patch)
tree65aff371f0b4c217f900989aa9ebe788def7ce1d
parente7ecfd2b2b462fa1d90fbfdaad3e05469dabfdfd (diff)
downloadorg.eclipse.jetty.project-fb43fd4c9e3203c6efe3785414ad157c8b00fa93.tar.gz
org.eclipse.jetty.project-fb43fd4c9e3203c6efe3785414ad157c8b00fa93.tar.xz
org.eclipse.jetty.project-fb43fd4c9e3203c6efe3785414ad157c8b00fa93.zip
Merge with master.
-rw-r--r--jetty-security/src/test/java/org/eclipse/jetty/security/ConstraintTest.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/jetty-security/src/test/java/org/eclipse/jetty/security/ConstraintTest.java b/jetty-security/src/test/java/org/eclipse/jetty/security/ConstraintTest.java
index fb0b30e210..e892d8b072 100644
--- a/jetty-security/src/test/java/org/eclipse/jetty/security/ConstraintTest.java
+++ b/jetty-security/src/test/java/org/eclipse/jetty/security/ConstraintTest.java
@@ -459,7 +459,6 @@ public class ConstraintTest
DigestAuthenticator authenticator = new DigestAuthenticator();
authenticator.setMaxNonceCount(5);
_security.setAuthenticator(authenticator);
- _security.setStrict(false);
_server.start();
String response;
@@ -1134,7 +1133,6 @@ public class ConstraintTest
RoleCheckHandler check=new RoleCheckHandler();
_security.setHandler(check);
_security.setAuthenticator(new BasicAuthenticator());
- //_security.setStrict(false);
_server.start();
@@ -1166,7 +1164,6 @@ public class ConstraintTest
public void testDeferredBasic() throws Exception
{
_security.setAuthenticator(new BasicAuthenticator());
- //_security.setStrict(false);
_server.start();
String response;
@@ -1193,7 +1190,6 @@ public class ConstraintTest
public void testRelaxedMethod() throws Exception
{
_security.setAuthenticator(new BasicAuthenticator());
- //_security.setStrict(false);
_server.start();
String response;

Back to the top