Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OATS-CADC
ac
Commits
3b4a04d2
Commit
3b4a04d2
authored
Nov 07, 2016
by
Brian Major
Browse files
issue-10 - removed LocalAuthority from tests (again).
parent
8c7b1018
Changes
1
Hide whitespace changes
Inline
Side-by-side
cadc-access-control-server/src/test/java/ca/nrc/cadc/ac/server/web/groups/RemoveGroupMemberActionTest.java
View file @
3b4a04d2
...
@@ -112,7 +112,14 @@ public class RemoveGroupMemberActionTest
...
@@ -112,7 +112,14 @@ public class RemoveGroupMemberActionTest
EasyMock
.
expect
(
groupPersistence
.
getGroup
(
"member"
)).
andReturn
(
member
);
EasyMock
.
expect
(
groupPersistence
.
getGroup
(
"member"
)).
andReturn
(
member
);
EasyMock
.
replay
(
groupPersistence
);
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
;
action
.
groupPersistence
=
groupPersistence
;
try
try
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment