Skip to content

Commit 9774409

Browse files
committed
Fixed assertions on nodes hot threads test
1 parent 08e8d28 commit 9774409

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Tests/Nest.Tests.Integration/Cluster/NodeTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ public void NodesHotThreads()
6464
);
6565

6666
r.IsValid.Should().BeTrue();
67-
r.HotThreads.Count.Should().BeGreaterOrEqualTo(1);
67+
r.HotThreads.Count.Should().BeGreaterThan(0);
6868
var hotThreadInfo = r.HotThreads.First();
6969
hotThreadInfo.Node.Should().NotBeNullOrEmpty();
70-
hotThreadInfo.Threads.Count.Should().BeGreaterThan(1);
70+
hotThreadInfo.Threads.Count.Should().BeGreaterThan(0);
7171
}
7272
}
7373
}

0 commit comments

Comments
 (0)