Skip to content

Commit c1c1642

Browse files
authored
Merge pull request #323 from manicmaniac/relax-load-test
Reduce number of clients in load tests
2 parents f0732c1 + c1bf0e8 commit c1c1642

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/ApolloDeveloperKitTests/ApolloDebugServerLoadTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class ApolloDebugServerLoadTests: XCTestCase {
4141

4242
func testGetBundleJS_withMaximumNumberOfClients() {
4343
let url = server.serverURL!.appendingPathComponent("bundle.js")
44-
for index in (0..<16) {
44+
for index in (0..<8) {
4545
let expectation = self.expectation(description: "response should be received (\(index))")
4646
let task = session.dataTask(with: url) { data, response, error in
4747
defer { expectation.fulfill() }

0 commit comments

Comments
 (0)