You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by co...@apache.org on 2021/02/19 16:01:37 UTC

[santuario-xml-security-java] branch master updated: Fixing an issue with modernizer

This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/santuario-xml-security-java.git


The following commit(s) were added to refs/heads/master by this push:
     new 73f11dc  Fixing an issue with modernizer
73f11dc is described below

commit 73f11dc4605c8193acfbded1d27e804bbe04eb21
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Fri Feb 19 16:01:15 2021 +0000

    Fixing an issue with modernizer
---
 src/test/java/javax/xml/crypto/test/dsig/ReferenceTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/javax/xml/crypto/test/dsig/ReferenceTest.java b/src/test/java/javax/xml/crypto/test/dsig/ReferenceTest.java
index 0ce2e24..af2ab8b 100644
--- a/src/test/java/javax/xml/crypto/test/dsig/ReferenceTest.java
+++ b/src/test/java/javax/xml/crypto/test/dsig/ReferenceTest.java
@@ -127,7 +127,7 @@ public class ReferenceTest {
             assertEquals(uri, ref.getURI());
             assertEquals(id, ref.getId());
             assertEquals(type, ref.getType());
-            assertEquals(ref.getTransforms(), Collections.EMPTY_LIST);
+            assertEquals(ref.getTransforms(), Collections.emptyList());
 
         } catch(Exception ex) {
             fail("Unexpected Exception: " + ex);