Skip to content

Commit 6a0ae90

Browse files
committed
Fix test failure
1 parent 9dfb677 commit 6a0ae90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/FoundationEssentialsTests/FileManager/FileManagerTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ final class FileManagerTests : XCTestCase {
291291
XCTAssertThrowsError(try $0.createDirectory(atPath: "create_dir_test", withIntermediateDirectories: false)) {
292292
XCTAssertEqual(($0 as? CocoaError)?.code, .fileWriteFileExists)
293293
}
294-
XCTAssertThrowsError(try $0.createDirectory(atPath: "create_dir_test3/nested", withIntermediateDirectories: false)) {
294+
XCTAssertThrowsError(try $0.createDirectory(atPath: "create_dir_test4/nested", withIntermediateDirectories: false)) {
295295
XCTAssertEqual(($0 as? CocoaError)?.code, .fileNoSuchFile)
296296
}
297297
XCTAssertThrowsError(try $0.createDirectory(atPath: "preexisting_file", withIntermediateDirectories: false)) {

0 commit comments

Comments
 (0)