File tree Expand file tree Collapse file tree
dspace-api/src/test/java/org/dspace/content/authority Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,10 +56,12 @@ public void testGetSourceWithDefaultValue() {
5656 @ Test
5757 public void testAuthorityNameIsProtected () {
5858 itemAuthority .setPluginInstanceName ("testProtectedAccess" );
59- assertEquals ("Authority name should be accessible" , "testProtectedAccess" , itemAuthority .getPluginInstanceName ());
59+ assertEquals ("Authority name should be accessible" , "testProtectedAccess" ,
60+ itemAuthority .getPluginInstanceName ());
6061 // Verify the field is protected by checking subclass access
6162 OpenPolicyFinderAuthority subAuthority = new OpenPolicyFinderAuthority ();
6263 subAuthority .setPluginInstanceName ("subAuthority" );
63- assertEquals ("Subclass should access protected authorityName" , "subAuthority" , subAuthority .getPluginInstanceName ());
64+ assertEquals ("Subclass should access protected authorityName" , "subAuthority" ,
65+ subAuthority .getPluginInstanceName ());
6466 }
6567}
You can’t perform that action at this time.
0 commit comments