Allowed OAuth2 clients to use localhost as redirect URIs.
Change-Id: Ia57668ab77dcdd68220d998c89bbcf366699409c
diff --git a/full/src/test/resources/test-config.xml b/full/src/test/resources/test-config.xml
index dbcd8b9..aaea39c 100644
--- a/full/src/test/resources/test-config.xml
+++ b/full/src/test/resources/test-config.xml
@@ -191,10 +191,9 @@
<!-- URLValidator -->
<bean id="redirectURIValidator" class="org.apache.commons.validator.routines.UrlValidator">
<constructor-arg value="http,https" index="0" />
- <constructor-arg index="1" type="long">
- <util:constant
- static-field="org.apache.commons.validator.routines.UrlValidator.NO_FRAGMENTS" />
- </constructor-arg>
+ <constructor-arg index="1" type="long"
+ value="#{T(org.apache.commons.validator.routines.UrlValidator).ALLOW_LOCAL_URLS +
+ T(org.apache.commons.validator.routines.UrlValidator).NO_FRAGMENTS}"/>
</bean>
<bean id="urlValidator" class="org.apache.commons.validator.routines.UrlValidator">
<constructor-arg value="http,https" />