[java-opensaml] branch master updated: Uniquify test file names

Rod Widdowson rdw at steadingsoftware.com
Thu Dec 20 12:16:56 EST 2018


This is an automated email from the git hooks/post-receive script.

rdw pushed a commit to branch master
in repository java-opensaml.

View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=5d971629b7b9a4af70d30374158481af4728ce79

The following commit(s) were added to refs/heads/master by this push:
       new  5d97162   Uniquify test file names
5d97162 is described below

commit 5d971629b7b9a4af70d30374158481af4728ce79
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Thu Dec 20 17:16:36 2018 +0000

    Uniquify test file names
---
 .../saml/metadata/resolver/impl/FilesystemMetadataResolverTest.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/opensaml-saml-impl/src/test/java/org/opensaml/saml/metadata/resolver/impl/FilesystemMetadataResolverTest.java b/opensaml-saml-impl/src/test/java/org/opensaml/saml/metadata/resolver/impl/FilesystemMetadataResolverTest.java
index edbd90f..db8a868 100644
--- a/opensaml-saml-impl/src/test/java/org/opensaml/saml/metadata/resolver/impl/FilesystemMetadataResolverTest.java
+++ b/opensaml-saml-impl/src/test/java/org/opensaml/saml/metadata/resolver/impl/FilesystemMetadataResolverTest.java
@@ -143,7 +143,7 @@ public class FilesystemMetadataResolverTest extends XMLObjectBaseTestCase {
      */
     @Test(expectedExceptions = {ResolverException.class})
     public void testDisappearingMetadataFile() throws IOException, ResolverException {
-        File targetFile = new File(System.getProperty("java.io.tmpdir"), "filesystem-md-provider-test.xml");
+        File targetFile = new File(System.getProperty("java.io.tmpdir"), "filesystem-md-provider-disappearing.xml");
         if (targetFile.exists()) {
             Assert.assertTrue(targetFile.delete());
         }
@@ -173,7 +173,7 @@ public class FilesystemMetadataResolverTest extends XMLObjectBaseTestCase {
      */
     @Test
     public void testRecoveryFromNoFailFast() throws IOException, InterruptedException {
-        File targetFile = new File(System.getProperty("java.io.tmpdir"), "filesystem-md-provider-test.xml");
+        File targetFile = new File(System.getProperty("java.io.tmpdir"), "filesystem-md-provider-failfast.xml");
         if (targetFile.exists()) {
             Assert.assertTrue(targetFile.delete());
         }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list