Skip to content

Commit

Permalink
ACS-6112: Ignoring test which fails intermittently. [skip tests] (#2613)
Browse files Browse the repository at this point in the history
* ACS-6112: Ignoring test which fails intermittently. [skip tests] as nothing has changed.
One GHA timed out but that is unrelated.
  • Loading branch information
mpichura authored Oct 24, 2023
1 parent 9995af0 commit 7cb68a6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import org.alfresco.utility.model.FileModel;
import org.alfresco.utility.model.TestGroup;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Ignore;
import org.testng.annotations.Test;

/**
Expand Down Expand Up @@ -102,7 +103,8 @@ public void testSecondaryAncestorWithDocumentAsSecondaryChild()
fileInP.getName());
}

@Test(groups = TestGroup.SEARCH)
@Test(groups = TestGroup.SEARCH, enabled = false)
@Ignore("ACS-6112")
public void testSecondaryAncestorWithNodeHavingComplexSecondaryRelationship()
{
// then
Expand Down

0 comments on commit 7cb68a6

Please sign in to comment.