[java-identity-provider] branch main updated: Fix Test

Rod Widdowson rdw at steadingsoftware.com
Fri Oct 25 12:31:25 UTC 2024


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

rdw pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=af12540c2287e3a590c5007485054567364e9ed6

The following commit(s) were added to refs/heads/main by this push:
     new af12540c2 Fix Test
af12540c2 is described below

commit af12540c2287e3a590c5007485054567364e9ed6
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Fri Oct 25 13:31:20 2024 +0100

    Fix Test
---
 .../src/test/java/net/shibboleth/idp/plugin/PluginVersionTest.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/idp-admin-api/src/test/java/net/shibboleth/idp/plugin/PluginVersionTest.java b/idp-admin-api/src/test/java/net/shibboleth/idp/plugin/PluginVersionTest.java
index b1211ccfe..199e762bc 100644
--- a/idp-admin-api/src/test/java/net/shibboleth/idp/plugin/PluginVersionTest.java
+++ b/idp-admin-api/src/test/java/net/shibboleth/idp/plugin/PluginVersionTest.java
@@ -68,7 +68,7 @@ public final class PluginVersionTest {
         failParse("-1");
         failParse("1.-1");
         failParse("1.1.-1");
-        failParse("10001.99.0");
+        failParse("30001.99.0");
 
         try {
             new InstallableComponentVersion(1,2,-1);
@@ -77,13 +77,13 @@ public final class PluginVersionTest {
             // OK
         }
         try {
-            new InstallableComponentVersion(10000,2,0);
+            new InstallableComponentVersion(30000,2,0);
             fail("Bad version not caught");
         } catch (NumberFormatException ex) {
             // OK
         }
         try {
-            new InstallableComponentVersion(1, 10000,2);
+            new InstallableComponentVersion(1, 30000,2);
             fail("Bad version not caught");
         } catch (NumberFormatException ex) {
             // OK

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


More information about the commits mailing list