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 bcbb8b8 commit 36c9bacCopy full SHA for 36c9bac
Tests/MongoSwiftTests/DNSSeedlistTests.swift
@@ -60,9 +60,14 @@ final class DNSSeedlistTests: MongoSwiftTestCase {
60
specName: "initial-dns-seedlist-discovery",
61
asType: DNSSeedlistTestCase.self
62
)
63
- for (_, testCase) in tests {
+ for (fileName, testCase) in tests {
64
let topologyWatcher = TopologyDescriptionWatcher()
65
66
+ // TODO: DRIVERS-796 or DRIVERS-990: unskip this test
67
+ guard fileName != "txt-record-with-overridden-uri-option.json" else {
68
+ return
69
+ }
70
+
71
// Enclose all of the potentially throwing code in `doTest`. Sometimes the expected errors come when
72
// parsing the URI, and other times they are not until we try to select a server.
73
func doTest() throws -> ConnectionString {
0 commit comments