From 33d98e456280df5ce6c6a1658765ca04dbcc355a Mon Sep 17 00:00:00 2001 From: Les Hazlewood <121180+lhazlewood@users.noreply.github.com> Date: Wed, 23 Apr 2025 13:03:30 -0700 Subject: [PATCH] Updated test case to verify PR #974. --- api/src/test/groovy/io/jsonwebtoken/lang/CollectionsTest.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/test/groovy/io/jsonwebtoken/lang/CollectionsTest.groovy b/api/src/test/groovy/io/jsonwebtoken/lang/CollectionsTest.groovy index a36a133bd..ecb9fa172 100644 --- a/api/src/test/groovy/io/jsonwebtoken/lang/CollectionsTest.groovy +++ b/api/src/test/groovy/io/jsonwebtoken/lang/CollectionsTest.groovy @@ -35,7 +35,7 @@ class CollectionsTest { @Test void testAsSetFromSet() { def set = Collections.setOf('foo') - assertSame set, Collections.asSet(set) + assertEquals set, Collections.asSet(set) } @Test