فهرست منبع

Unindent the #if.

Jon Shier 8 سال پیش
والد
کامیت
fca8178e15
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      Tests/ResultTests.swift

+ 3 - 3
Tests/ResultTests.swift

@@ -388,11 +388,11 @@ class ResultTestCase: BaseTestCase {
         result.withError { string = "\(type(of: $0))" }
         
         // Then
-        #if swift(>=3.2)
+    #if swift(>=3.2)
         XCTAssertEqual(string, "ResultError #1")
-        #else
+    #else
         XCTAssertEqual(string, "(ResultError #1)")
-        #endif
+    #endif
     }
     
     func testWithErrorDoesNotExecuteWhenSuccess() {