diff --git a/IntegrationTests/Services/AWSS3IntegrationTests/S3ConcurrentTests.swift b/IntegrationTests/Services/AWSS3IntegrationTests/S3ConcurrentTests.swift index c2f77252fc8..75b4953d3bb 100644 --- a/IntegrationTests/Services/AWSS3IntegrationTests/S3ConcurrentTests.swift +++ b/IntegrationTests/Services/AWSS3IntegrationTests/S3ConcurrentTests.swift @@ -17,15 +17,15 @@ class S3ConcurrentTests: S3XCTestCase { let MEGABYTE: Double = 1_000_000 // Payload below 1,048,576 bytes; sends as simple data payload - func test_100x_1MB_getObject() async throws { + func test_20x_1MB_getObject() async throws { fileData = try generateDummyTextData(numMegabytes: MEGABYTE) - try await repeatConcurrentlyWithArgs(count: 100, test: getObject, args: fileData!) + try await repeatConcurrentlyWithArgs(count: 20, test: getObject, args: fileData!) } // Payload over 1,048,576 bytes; uses aws chunked encoding & flexible checksum - func test_100x_1_5MB_getObject() async throws { + func test_20x_1_5MB_getObject() async throws { fileData = try generateDummyTextData(numMegabytes: MEGABYTE * 1.5) - try await repeatConcurrentlyWithArgs(count: 100, test: getObject, args: fileData!) + try await repeatConcurrentlyWithArgs(count: 20, test: getObject, args: fileData!) } /* Helper functions */