[java-opensaml COMMIT] /trunk/opensaml-saml-impl/src/test/java/org/opensaml/saml/common/profile/logic/EntityAttribute...

noreply at shibboleth.net noreply at shibboleth.net
Mon Sep 22 22:40:16 EDT 2014


Author: scantor
Date: Mon Sep 22 22:40:16 2014
New Revision: 4049

URL: http://svn.shibboleth.net/view/java-opensaml?rev=4049&view=rev
Log:
Fix setter name.

Modified:
    trunk/opensaml-saml-impl/src/test/java/org/opensaml/saml/common/profile/logic/EntityAttributesPredicateTest.java

Modified: trunk/opensaml-saml-impl/src/test/java/org/opensaml/saml/common/profile/logic/EntityAttributesPredicateTest.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-impl/src/test/java/org/opensaml/saml/common/profile/logic/EntityAttributesPredicateTest.java?rev=4049&r1=4048&r2=4049&view=diff
==============================================================================
--- trunk/opensaml-saml-impl/src/test/java/org/opensaml/saml/common/profile/logic/EntityAttributesPredicateTest.java (original)
+++ trunk/opensaml-saml-impl/src/test/java/org/opensaml/saml/common/profile/logic/EntityAttributesPredicateTest.java Mon Sep 22 22:40:16 2014
@@ -118,7 +118,7 @@
 
         final Candidate candidate = new Candidate("urn:foo", Attribute.URI_REFERENCE);
         candidate.setValues(Collections.singletonList("bar"));
-        candidate.setRegexes(Collections.singletonList(Pattern.compile("baz")));
+        candidate.setRegexps(Collections.singletonList(Pattern.compile("baz")));
         final EntityAttributesPredicate condition =
                 new EntityAttributesPredicate(Collections.singletonList(candidate), false);
                 



More information about the commits mailing list