Skip to content

Commit

Permalink
Merge pull request #19266 from unoplatform/mergify/bp/release/stable/…
Browse files Browse the repository at this point in the history
…5.6/pr-19247

test: Adjust When_Many_Targets_Collected (backport #19247)
  • Loading branch information
jeromelaban authored Jan 17, 2025
2 parents f98e6fb + 6570255 commit f1f4ccf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ void Do()

SUT.Invoke(this, null);

Assert.AreEqual(5150, invoked);
Assert.IsTrue(invoked >= 5150);

disposable.Clear();

Expand All @@ -188,7 +188,7 @@ void Do()
// Ensure that everything has been collected.
SUT.Invoke(this, null);

Assert.AreEqual(5150, invoked);
Assert.IsTrue(invoked >= 5150);
}

[TestMethod]
Expand Down

0 comments on commit f1f4ccf

Please sign in to comment.