Skip to content

Commit a871b81

Browse files
authored
Merge pull request #896 from ahoppen/fix-warning
Fix build warning in tests
2 parents e658606 + 6566d61 commit a871b81

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Tests/SwiftFormatTests/Utilities/FileIteratorTests.swift

+3-1
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,14 @@ final class FileIteratorTests: XCTestCase {
103103
while !root.isRoot {
104104
root.deleteLastPathComponent()
105105
}
106-
var rootPath = root.path
107106
#if os(Windows) && compiler(<6.1)
107+
var rootPath = root.path
108108
if rootPath.hasPrefix("/") {
109109
// Canonicalize /C: to C:
110110
rootPath = String(rootPath.dropFirst())
111111
}
112+
#else
113+
let rootPath = root.path
112114
#endif
113115
// Make sure that we don't drop the beginning of the path if we are running in root.
114116
// https://github.com/swiftlang/swift-format/issues/862

0 commit comments

Comments
 (0)