Skip to content

Commit

Permalink
Fix Redis Tests : remove all the entry we add in store.
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernard31 committed Mar 31, 2017
1 parent ffb3610 commit 400cbfd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Expand Up @@ -47,6 +47,7 @@ public void start() {
public void stop() {
helper.client.destroy(false);
helper.server.destroy();
helper.dispose();
}

@Test
Expand Down
Expand Up @@ -274,8 +274,8 @@ public EditableSecurityStore getSecurityStore() {

@Override
public void dispose() {
super.dispose();
getSecurityStore().remove(getCurrentEndpoint());
getSecurityStore().remove(BAD_ENDPOINT);
super.dispose();
}
}
Expand Up @@ -44,7 +44,6 @@ public void start() {
public void stop() {
helper.client.destroy(true);
helper.server.destroy();
helper.deregisterClient();
helper.dispose();
}

Expand Down

0 comments on commit 400cbfd

Please sign in to comment.