From 5e3e2ed2c13b432ad0ce64950de9f088aaec2242 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Mon, 24 Mar 2025 21:48:43 +0900 Subject: [PATCH] Fix flaky test (#6634) --- BTCPayServer.Tests/SeleniumTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer.Tests/SeleniumTests.cs b/BTCPayServer.Tests/SeleniumTests.cs index fdb4c9155..d007e01a7 100644 --- a/BTCPayServer.Tests/SeleniumTests.cs +++ b/BTCPayServer.Tests/SeleniumTests.cs @@ -272,7 +272,7 @@ namespace BTCPayServer.Tests // We CPFP'd two transactions with a newExpectedEffectiveFeeRate of 20.0 // When we want to RBF the previous CPFP, the currentEffectiveFeeRate should be coherent with our ealier choice - Assert.Equal(newExpectedEffectiveFeeRate, currentEffectiveFeeRate, 1); + Assert.Equal(newExpectedEffectiveFeeRate, currentEffectiveFeeRate, 0); s.ClickPagePrimary(); s.Driver.FindElement(By.Id("BroadcastTransaction")).Click();