Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
brustolin authored Nov 22, 2024
1 parent eba4d00 commit 15c4a4e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ struct DuplicatedSDKTestApp: App {

init () {
SentrySDK.start { options in
options.dsn = "https://a@o.sentry.io/1"
options.dsn = "https://[email protected].sentry.io/5428557"
}
}

Expand Down
4 changes: 2 additions & 2 deletions Tests/DuplicatedSDKTest/DuplicatedSDKTest/UITest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import XCTest
final class UITestDuplicatedSDK: XCTestCase {

@MainActor
func testExample() throws {
func testLoadIntegrations() throws {
let app = XCUIApplication()
app.launch()
XCTAssertEqual(app.staticTexts["TEST_RESULT"].label, "true")
XCTAssertEqual(app.staticTexts["TEST_RESULT"].label, "true", "SentrySDK integrations are not being loaded from the same binary. This will lead to undefined behavior.")
}
}

0 comments on commit 15c4a4e

Please sign in to comment.