Skip to content
Snippets Groups Projects
Commit 3b4a04d2 authored by Brian Major's avatar Brian Major
Browse files

issue-10 - removed LocalAuthority from tests (again).

parent 8c7b1018
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,14 @@ public class RemoveGroupMemberActionTest
EasyMock.expect(groupPersistence.getGroup("member")).andReturn(member);
EasyMock.replay(groupPersistence);
RemoveGroupMemberAction action = new RemoveGroupMemberAction( "group", "member");
RemoveGroupMemberAction action = new RemoveGroupMemberAction( "group", "member")
{
@Override
public URI getServiceURI(URI standard)
{
return URI.create("ivo://example.org/gms");
}
};
action.groupPersistence = groupPersistence;
try
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment