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 5d358db commit 375a789Copy full SHA for 375a789
tests/MongoDB.Driver.Tests/AtClusterTimeTests.cs
@@ -17,6 +17,7 @@
17
using MongoDB.Bson;
18
using MongoDB.Bson.Serialization.Attributes;
19
using MongoDB.Driver.Core.Clusters;
20
+using MongoDB.Driver.Core.Misc;
21
using MongoDB.Driver.Core.TestHelpers.XunitExtensions;
22
using Xunit;
23
@@ -27,7 +28,7 @@ public class AtClusterTimeTests
27
28
[Fact]
29
public void AtClusterTime_should_work()
30
{
- RequireServer.Check().ClusterType(ClusterType.ReplicaSet);
31
+ RequireServer.Check().ClusterType(ClusterType.ReplicaSet).Supports(Feature.SnapshotReads);
32
const string collectionName = "atClusterTimeTests";
33
const string databaseName = "testDb";
34
0 commit comments