Forráskód Böngészése

Update the order of the execution of the tests

Victor Sigler 6 éve
szülő
commit
7dc007b6ac

+ 1 - 1
XCode/Tests/ServerThreadingTests.swift

@@ -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")

+ 1 - 1
XCode/Tests/XCTestManifests.swift

@@ -27,8 +27,8 @@ extension ServerThreadingTests {
     //   `swift test --generate-linuxmain`
     // to regenerate.
     static let __allTests__ServerThreadingTests = [
+        ("testShouldHandleTheRequestInDifferentTimeIntervals", testShouldHandleTheRequestInDifferentTimeIntervals),
         ("testShouldHandleTheSameRequestConcurrently", testShouldHandleTheSameRequestConcurrently),
-        ("testShouldHandleTheSameRequestWithDifferentTimeIntervals", testShouldHandleTheSameRequestWithDifferentTimeIntervals),
     ]
 }