Skip to content
Merged
Changes from all 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
7 changes: 6 additions & 1 deletion Tests/MongoSwiftTests/DNSSeedlistTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,14 @@ final class DNSSeedlistTests: MongoSwiftTestCase {
specName: "initial-dns-seedlist-discovery",
asType: DNSSeedlistTestCase.self
)
for (_, testCase) in tests {
for (fileName, testCase) in tests {
let topologyWatcher = TopologyDescriptionWatcher()

// TODO: DRIVERS-796 or DRIVERS-990: unskip this test
guard fileName != "txt-record-with-overridden-uri-option.json" else {
return
}

// Enclose all of the potentially throwing code in `doTest`. Sometimes the expected errors come when
// parsing the URI, and other times they are not until we try to select a server.
func doTest() throws -> ConnectionString {
Expand Down