[java-identity-provider COMMIT] /trunk/idp-authn-api/src/test/java/net/shibboleth/idp/authn/DefaultAuthenticationResu...

noreply at shibboleth.net noreply at shibboleth.net
Thu Sep 26 09:55:45 EDT 2013


Author: scantor
Date: Thu Sep 26 09:55:44 2013
New Revision: 4801

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=4801&view=rev
Log:
Missed a class rename.

Modified:
    trunk/idp-authn-api/src/test/java/net/shibboleth/idp/authn/DefaultAuthenticationResultSerializerTest.java

Modified: trunk/idp-authn-api/src/test/java/net/shibboleth/idp/authn/DefaultAuthenticationResultSerializerTest.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-api/src/test/java/net/shibboleth/idp/authn/DefaultAuthenticationResultSerializerTest.java?rev=4801&r1=4800&r2=4801&view=diff
==============================================================================
--- trunk/idp-authn-api/src/test/java/net/shibboleth/idp/authn/DefaultAuthenticationResultSerializerTest.java (original)
+++ trunk/idp-authn-api/src/test/java/net/shibboleth/idp/authn/DefaultAuthenticationResultSerializerTest.java Thu Sep 26 09:55:44 2013
@@ -137,7 +137,7 @@
     
     private String fileToString(String pathname) throws URISyntaxException, IOException {
         try (FileInputStream stream = new FileInputStream(
-                new File(BaseAuthenticationResultSerializerTest.class.getResource(pathname).toURI()))) {
+                new File(DefaultAuthenticationResultSerializerTest.class.getResource(pathname).toURI()))) {
             int avail = stream.available();
             byte[] data = new byte[avail];
             int numRead = 0;



More information about the commits mailing list