We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d05a64 commit d6e81aaCopy full SHA for d6e81aa
tests/NRedisStack.Tests/Search/SearchTests.cs
@@ -550,7 +550,7 @@ public void TestApplyAndFilterAggregations(string endpointId)
550
Row r1 = res.GetRow(0);
551
Row r2 = res.GetRow(1);
552
Log($"Attempt {attempt} of {maxAttempts}: avgscore {r2.GetDouble("avgscore")}");
553
- if (!IsNear(r2.GetDouble("avgscore"), 67.5)) continue; // this test can be flakey on cluster
+ if (attempt != maxAttempts && !IsNear(r2.GetDouble("avgscore"), 67.5)) continue; // this test can be flakey on cluster
554
555
Assert.Equal("def", r1.GetString("name"));
556
Assert.Equal(52.5, r1.GetDouble("avgscore"), 0);
0 commit comments