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 a269940 commit 55b1425Copy full SHA for 55b1425
src/Tests/Tests/Cluster/NodesStats/NodesStatsApiTests.cs
@@ -74,11 +74,12 @@ protected void Assert(NodeIngestStats nodeIngestStats)
74
{
75
nodeIngestStats.Should().NotBeNull();
76
nodeIngestStats.Total.Should().NotBeNull();
77
- nodeIngestStats.Pipelines.Should().NotBeNull();
78
- nodeIngestStats.Pipelines.Should().ContainKey(DefaultSeeder.PipelineName);
79
80
if (TestClient.Configuration.InRange("<6.5.0")) return;
81
+ nodeIngestStats.Pipelines.Should().NotBeNull();
+ nodeIngestStats.Pipelines.Should().ContainKey(DefaultSeeder.PipelineName);
82
+
83
var pipelineStats = nodeIngestStats.Pipelines[DefaultSeeder.PipelineName];
84
85
pipelineStats.Should().NotBeNull();
0 commit comments