From 274d97ce67b1b2e1c67c160c2d68fb83c7c9d339 Mon Sep 17 00:00:00 2001 From: Roy Wetherall Date: Thu, 3 Mar 2016 14:50:24 +1100 Subject: [PATCH] Fix build failure --- .../test/legacy/webscript/RmAuthoritiesRestApiTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmAuthoritiesRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmAuthoritiesRestApiTest.java index a64e1bc80e..93b4396f02 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmAuthoritiesRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmAuthoritiesRestApiTest.java @@ -347,6 +347,6 @@ public class RmAuthoritiesRestApiTest extends BaseRMWebScriptTestCase { String contentAsString = response.getContentAsString(); assertNotNull(contentAsString); - assertTrue(contentAsString.equals("{}")); + assertTrue(contentAsString.contains("{}")); } }