Reduce Layerizer test disk fixture size to 1GB

This commit is contained in:
Fedor Korotkov 2026-04-09 21:02:09 -07:00
parent 6c7275ea37
commit 90367912ff
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ final class LayerizerTests: XCTestCase {
func testDiskV2() async throws {
// Original disk file to be pushed to the registry
let originalDiskFileURL = try fileWithRandomData(sizeBytes: 5 * 1024 * 1024 * 1024)
let originalDiskFileURL = try fileWithRandomData(sizeBytes: 1 * 1024 * 1024 * 1024)
addTeardownBlock {
try FileManager.default.removeItem(at: originalDiskFileURL)
}