From 698d7596828a3582cf961fae7f453fff15eea945 Mon Sep 17 00:00:00 2001 From: JakobDev Date: Mon, 14 Oct 2024 22:23:14 +0200 Subject: [PATCH] Fix test --- tests/integration/milestone_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/milestone_test.go b/tests/integration/milestone_test.go index 6bcf7d7128..2a01786dc0 100644 --- a/tests/integration/milestone_test.go +++ b/tests/integration/milestone_test.go @@ -38,5 +38,5 @@ func TestMilestonesCount(t *testing.T) { closedCount := htmlDoc.doc.Find("a[data-test-name='closed-issue-count']").Text() assert.Contains(t, closedCount, "1\u00a0Closed") - assert.Empty(t, htmlDoc.doc.Find("a[data-test-name='closed-issue-count']").Nodes) + assert.Empty(t, htmlDoc.doc.Find("a[data-test-name='allissue-count']").Nodes) }