Skip to content

Commit 7273bf4

Browse files
authored
test: Fix wrong launch arguments in FeedbackUITests (#5727)
1 parent a3552ab commit 7273bf4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Samples/iOS-SwiftUI/iOS-SwiftUI-UITests/FeedbackUITests.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1+
import SentrySampleShared
12
import XCTest
23

34
final class FeedbackUITests: XCTestCase {
45
func testWidgetDisplayInSwiftUIApp() throws {
56
let app = XCUIApplication()
67
app.launchArguments.append(contentsOf: [
7-
"--io.sentry.feedback.all-defaults",
8-
"--io.sentry.disable-app-start-profiling"
8+
SentrySDKOverrides.Feedback.allDefaults.rawValue,
9+
SentrySDKOverrides.Profiling.disableAppStartProfiling.rawValue
910
])
1011
app.launch()
1112

0 commit comments

Comments
 (0)