Skip to content

Commit

Permalink
Hacky thing
Browse files Browse the repository at this point in the history
  • Loading branch information
roji committed Feb 28, 2024
1 parent 9877164 commit ddbc986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Milvus.Client.Tests/DataTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public async Task FlushAllAsync_and_wait()
await Client.WaitForFlushAllAsync(timestamp);

IEnumerable<PersistentSegmentInfo> segmentInfos = await Collection.GetPersistentSegmentInfosAsync();
Assert.True(segmentInfos.All(p => p.State == SegmentState.Sealed));
Assert.True(segmentInfos.All(p => p.State is SegmentState.Flushed or SegmentState.Sealed));
}

[Fact]
Expand Down

0 comments on commit ddbc986

Please sign in to comment.