Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
]
},
{
"minServerVersion": "4.1.7",
"minServerVersion": "5.0",
"topology": [
"sharded",
"load-balanced"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
]
},
{
"minServerVersion": "4.1.7",
"minServerVersion": "5.0",
"topology": [
"sharded",
"load-balanced"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
]
},
{
"minServerVersion": "4.1.7",
"minServerVersion": "5.0",
"topology": [
"sharded",
"load-balanced"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
]
},
{
"minServerVersion": "4.1.7",
"minServerVersion": "5.0",
"topology": [
"sharded",
"load-balanced"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
]
},
{
"minServerVersion": "4.1.7",
"minServerVersion": "5.0",
"topology": [
"sharded",
"load-balanced"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
]
},
{
"minServerVersion": "4.1.7",
"minServerVersion": "5.0",
"topology": [
"sharded",
"load-balanced"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
]
},
{
"minServerVersion": "4.1.7",
"minServerVersion": "5.0",
"topology": [
"sharded",
"load-balanced"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
]
},
{
"minServerVersion": "4.1.7",
"minServerVersion": "5.0",
"topology": [
"sharded",
"load-balanced"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
]
},
{
"minServerVersion": "4.1.7",
"minServerVersion": "5.0",
"topology": [
"sharded",
"load-balanced"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
import java.util.List;
import java.util.concurrent.TimeUnit;

import static com.mongodb.ClusterFixture.isDiscoverableReplicaSet;
import static com.mongodb.JsonTestServerVersionChecker.skipTest;
import static com.mongodb.client.Fixture.getDefaultDatabaseName;
import static com.mongodb.client.Fixture.getMongoClientSettingsBuilder;
Expand Down Expand Up @@ -254,7 +253,7 @@ public static Collection<Object[]> data() throws URISyntaxException, IOException
data.add(new Object[]{file.getName(), test.asDocument().getString("description").getValue(),
testDocument.getString("database_name", new BsonString(getDefaultDatabaseName())).getValue(),
testDocument.getArray("data"), test.asDocument(),
!isDiscoverableReplicaSet() || skipTest(testDocument, test.asDocument())});
skipTest(testDocument, test.asDocument())});
}
}
return data;
Expand Down