[java-opensaml] branch main updated: Account for class rename.
Scott Cantor
cantor.2 at osu.edu
Fri Sep 18 15:47:34 UTC 2020
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=08d09beb2e0b5b0375a39954754dadff316f62d5
The following commit(s) were added to refs/heads/main by this push:
new 08d09beb2 Account for class rename.
08d09beb2 is described below
commit 08d09beb2e0b5b0375a39954754dadff316f62d5
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Sep 18 11:47:31 2020 -0400
Account for class rename.
---
.../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 15e7f58d3..a7b8b3e96 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
@@ -198,7 +198,7 @@ public class BaseContextTest {
TestContext parent = new TestContext();
parent.addSubcontext(new TestContext());
- BaseContext child = parent.getSubcontext("org.opensaml.messaging.context.TestContext");
+ BaseContext child = parent.getSubcontext("org.opensaml.messaging.context.testing.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