Bladeren bron

Update the order of the execution of the tests

Victor Sigler 6 jaren geleden
bovenliggende
commit
7dc007b6ac
2 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 1 1
      XCode/Tests/ServerThreadingTests.swift
  2. 1 1
      XCode/Tests/XCTestManifests.swift

+ 1 - 1
XCode/Tests/ServerThreadingTests.swift

@@ -29,7 +29,7 @@ class ServerThreadingTests: XCTestCase {
         super.tearDown()
         super.tearDown()
     }
     }
 
 
-    func testShouldHandleTheSameRequestWithDifferentTimeIntervals() {
+    func testShouldHandleTheRequestInDifferentTimeIntervals() {
 
 
         let path = "/a/:b/c"
         let path = "/a/:b/c"
         let queue = DispatchQueue(label: "com.swifter.threading")
         let queue = DispatchQueue(label: "com.swifter.threading")

+ 1 - 1
XCode/Tests/XCTestManifests.swift

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