Skip to content

Commit 7dc007b

Browse files
committed
Update the order of the execution of the tests
1 parent 74547b7 commit 7dc007b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

XCode/Tests/ServerThreadingTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ServerThreadingTests: XCTestCase {
2929
super.tearDown()
3030
}
3131

32-
func testShouldHandleTheSameRequestWithDifferentTimeIntervals() {
32+
func testShouldHandleTheRequestInDifferentTimeIntervals() {
3333

3434
let path = "/a/:b/c"
3535
let queue = DispatchQueue(label: "com.swifter.threading")

XCode/Tests/XCTestManifests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ extension ServerThreadingTests {
2727
// `swift test --generate-linuxmain`
2828
// to regenerate.
2929
static let __allTests__ServerThreadingTests = [
30+
("testShouldHandleTheRequestInDifferentTimeIntervals", testShouldHandleTheRequestInDifferentTimeIntervals),
3031
("testShouldHandleTheSameRequestConcurrently", testShouldHandleTheSameRequestConcurrently),
31-
("testShouldHandleTheSameRequestWithDifferentTimeIntervals", testShouldHandleTheSameRequestWithDifferentTimeIntervals),
3232
]
3333
}
3434

0 commit comments

Comments
 (0)