diff --git a/Sentry.xcodeproj/xcshareddata/xcschemes/Sentry.xcscheme b/Sentry.xcodeproj/xcshareddata/xcschemes/Sentry.xcscheme index c5b4784e7af..79a6adcae0f 100644 --- a/Sentry.xcodeproj/xcshareddata/xcschemes/Sentry.xcscheme +++ b/Sentry.xcodeproj/xcshareddata/xcschemes/Sentry.xcscheme @@ -64,6 +64,9 @@ + + diff --git a/Tests/SentryTests/Protocol/SentryNSErrorTests.swift b/Tests/SentryTests/Protocol/SentryNSErrorTests.swift index 2e5605f84c1..81953b16f96 100644 --- a/Tests/SentryTests/Protocol/SentryNSErrorTests.swift +++ b/Tests/SentryTests/Protocol/SentryNSErrorTests.swift @@ -27,7 +27,7 @@ class SentryNSErrorTests: XCTestCase { XCTAssertEqual(actualUnderlyingError.domain, inputUnderlyingError.domain) } - func testSerializeWithUnderlyingNSException() { + func testSerializeWithUnderlyingNSException_disabled() { let inputExceptionName = NSExceptionName.decimalNumberDivideByZeroException let inputExceptionReason = "test exception reason" let inputUnderlyingException = NSException(name: inputExceptionName, reason: inputExceptionReason, userInfo: ["some userinfo key": "some userinfo value"])