Explorar el Código

Update the order of the execution of the tests

Victor Sigler hace 6 años
padre
commit
7dc007b6ac
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  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()
     }
 
-    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),
     ]
 }