Merged HEAD-BUG-FIX (5.1/Cloud) to HEAD (5.1/Cloud)

93993: Merged 5.0.N (5.0.1) to HEAD-BUG-FIX (5.1/Cloud)
      93950: MNT-13089: RepoAdminServiceImplTest hangs on SQL Server
      Disabled MultiTServiceImplTest.testGetName in case of MS SQL Server.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@95031 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Alan Davis
2015-01-31 15:29:30 +00:00
parent f1ebfb963f
commit aad85cd6f9

View File

@@ -194,6 +194,12 @@ public class MultiTServiceImplTest
@Test
public void testGetName()
{
// disable in case of SQL Server
// see MNT-13089
if (dialect instanceof SQLServerDialect)
{
return;
}
NodeRef userNodeRef = createUser(USER1, TenantService.DEFAULT_DOMAIN, PASS);
assertNotNull("The user was not created.", userNodeRef);
TenantRunAsWork<NodeRef> work1 = new TenantRunAsWork<NodeRef>()