Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
vladak committed Jul 11, 2023
1 parent 4861460 commit b2b8cc7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void testBasicConfiguration() {
@Test
public void testDeleteGroup() {
Map<String, Group> groups = cfg.getGroups();
int origSize = groups.size();
final int origSize = groups.size();
invokeMethod("deleteGroup",
new Class<?>[]{Map.class, String.class},
new Object[]{groups, "random not existing group"});
Expand All @@ -78,7 +78,7 @@ public void testDeleteGroup() {
@Test
public void testAddGroup() {
Map<String, Group> groups = cfg.getGroups();
int origSize = groups.size();
final int origSize = groups.size();
Group grp = findGroup(groups, "new fantastic group");
assertNull(grp);

Expand All @@ -97,7 +97,7 @@ public void testAddGroup() {
@Test
public void testAddGroupToParent() {
Map<String, Group> groups = cfg.getGroups();
int origSize = groups.size();
final int origSize = groups.size();
Group grp = findGroup(groups, "apache");
assertNotNull(grp);

Expand Down

0 comments on commit b2b8cc7

Please sign in to comment.