From 54471c28ba1a51ab2f6449918d8482cd8c821811 Mon Sep 17 00:00:00 2001 From: Francesco Paolo Severino Date: Tue, 10 Sep 2024 10:49:31 +0200 Subject: [PATCH] Futuristic debugging --- Tests/ZipTests/ZipTests.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Tests/ZipTests/ZipTests.swift b/Tests/ZipTests/ZipTests.swift index fa682d78..a59cc1ae 100644 --- a/Tests/ZipTests/ZipTests.swift +++ b/Tests/ZipTests/ZipTests.swift @@ -350,6 +350,7 @@ final class ZipTests: XCTestCase { let destinationPath = try autoRemovingSandbox() XCTAssertNoThrow(try Zip.unzipFile(filePath, destination: destinationPath, password: "password", fileOutputHandler: { fileURL in + print("File: \(fileURL)") XCTAssertTrue(FileManager.default.fileExists(atPath: fileURL.path)) }))