We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e658606 + 6566d61 commit a871b81Copy full SHA for a871b81
Tests/SwiftFormatTests/Utilities/FileIteratorTests.swift
@@ -103,12 +103,14 @@ final class FileIteratorTests: XCTestCase {
103
while !root.isRoot {
104
root.deleteLastPathComponent()
105
}
106
- var rootPath = root.path
107
#if os(Windows) && compiler(<6.1)
+ var rootPath = root.path
108
if rootPath.hasPrefix("/") {
109
// Canonicalize /C: to C:
110
rootPath = String(rootPath.dropFirst())
111
112
+ #else
113
+ let rootPath = root.path
114
#endif
115
// Make sure that we don't drop the beginning of the path if we are running in root.
116
// https://github.com/swiftlang/swift-format/issues/862
0 commit comments