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 08e8d28 commit 9774409Copy full SHA for 9774409
src/Tests/Nest.Tests.Integration/Cluster/NodeTests.cs
@@ -64,10 +64,10 @@ public void NodesHotThreads()
64
);
65
66
r.IsValid.Should().BeTrue();
67
- r.HotThreads.Count.Should().BeGreaterOrEqualTo(1);
+ r.HotThreads.Count.Should().BeGreaterThan(0);
68
var hotThreadInfo = r.HotThreads.First();
69
hotThreadInfo.Node.Should().NotBeNullOrEmpty();
70
- hotThreadInfo.Threads.Count.Should().BeGreaterThan(1);
+ hotThreadInfo.Threads.Count.Should().BeGreaterThan(0);
71
}
72
73
0 commit comments