Skip to content

Commit

Permalink
Fix TestNG7 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-tkachenko-datadog committed Jan 31, 2025
1 parent af973a0 commit 6c76dc4
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ abstract class TestNGTest extends CiVisibilityInstrumentationTest {
assertSpansData(testcaseName)

where:
testcaseName | tests | quarantined | retried
"test-retry-failed" | [TestFailed] | [new TestIdentifier("org.example.TestFailed", "test_failed", null)] | [new TestIdentifier("org.example.TestFailed", "test_failed", null)]
testcaseName | tests | quarantined | retried
"test-retry-failed-${version()}" | [TestFailed] | [new TestIdentifier("org.example.TestFailed", "test_failed", null)] | [new TestIdentifier("org.example.TestFailed", "test_failed", null)]
}

def "test quarantined early flakiness detection #testcaseName"() {
Expand All @@ -204,9 +204,9 @@ abstract class TestNGTest extends CiVisibilityInstrumentationTest {
assertSpansData(testcaseName)

where:
testcaseName | tests | quarantined | known
"test-failed" | [TestFailed] | [new TestIdentifier("org.example.TestFailed", "test_failed", null)] | [new TestIdentifier("org.example.TestFailed", "test_failed", null)]
"test-failed-efd" | [TestFailed] | [new TestIdentifier("org.example.TestFailed", "test_failed", null)] | []
testcaseName | tests | quarantined | known
"test-failed-${version()}" | [TestFailed] | [new TestIdentifier("org.example.TestFailed", "test_failed", null)] | [new TestIdentifier("org.example.TestFailed", "test_failed", null)]
"test-failed-efd" | [TestFailed] | [new TestIdentifier("org.example.TestFailed", "test_failed", null)] | []
}

private static boolean isEFDSupported() {
Expand Down

0 comments on commit 6c76dc4

Please sign in to comment.