Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update the order of the execution of the tests
  • Loading branch information
Vkt0r committed May 16, 2020
commit 7dc007b6ac2023c985b8f27fa0c84b1b75f33b88
2 changes: 1 addition & 1 deletion XCode/Tests/ServerThreadingTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class ServerThreadingTests: XCTestCase {
super.tearDown()
}

func testShouldHandleTheSameRequestWithDifferentTimeIntervals() {
func testShouldHandleTheRequestInDifferentTimeIntervals() {

let path = "/a/:b/c"
let queue = DispatchQueue(label: "com.swifter.threading")
Expand Down
2 changes: 1 addition & 1 deletion XCode/Tests/XCTestManifests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ extension ServerThreadingTests {
// `swift test --generate-linuxmain`
// to regenerate.
static let __allTests__ServerThreadingTests = [
("testShouldHandleTheRequestInDifferentTimeIntervals", testShouldHandleTheRequestInDifferentTimeIntervals),
("testShouldHandleTheSameRequestConcurrently", testShouldHandleTheSameRequestConcurrently),
("testShouldHandleTheSameRequestWithDifferentTimeIntervals", testShouldHandleTheSameRequestWithDifferentTimeIntervals),
]
}

Expand Down