[java-opensaml] branch main updated: Fix test that depends on TestContext class name.
Scott Cantor
cantor.2 at osu.edu
Thu Sep 15 13:14:55 UTC 2022
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=82200671567f8dd20df0980c533c58d5b8b85cf1
The following commit(s) were added to refs/heads/main by this push:
new 822006715 Fix test that depends on TestContext class name.
822006715 is described below
commit 82200671567f8dd20df0980c533c58d5b8b85cf1
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Sep 15 09:14:53 2022 -0400
Fix test that depends on TestContext class name.
---
.../src/test/java/org/opensaml/messaging/context/BaseContextTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/opensaml-messaging-api/src/test/java/org/opensaml/messaging/context/BaseContextTest.java b/opensaml-messaging-api/src/test/java/org/opensaml/messaging/context/BaseContextTest.java
index 25a4297ca..92f0b9598 100644
--- a/opensaml-messaging-api/src/test/java/org/opensaml/messaging/context/BaseContextTest.java
+++ b/opensaml-messaging-api/src/test/java/org/opensaml/messaging/context/BaseContextTest.java
@@ -197,7 +197,7 @@ public class BaseContextTest {
TestContext parent = new TestContext();
parent.addSubcontext(new TestContext());
- BaseContext child = parent.getSubcontext("org.opensaml.messaging.context.testing.TestContext");
+ BaseContext child = parent.getSubcontext("org.opensaml.messaging.context.TestContext");
Assert.assertNotNull(child);
Assert.assertTrue(child instanceof TestContext);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list