Fix assert error message
This commit is contained in:
@@ -19,7 +19,7 @@ private func logic<P: Pathish>(_ set1: Set<Path>, _ set2: Set<Path>, relativeTo:
|
||||
if set1 != set2 {
|
||||
let cvt: (Path) -> String = { $0.relative(to: relativeTo) }
|
||||
let out1 = set1.map(cvt).sorted()
|
||||
let out2 = set1.map(cvt).sorted()
|
||||
let out2 = set2.map(cvt).sorted()
|
||||
fail("Set(\(out1)) is not equal to Set(\(out2))")
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user