-
Notifications
You must be signed in to change notification settings - Fork 0
Refactor FXIOS-12796 [Swift 6 Migration] Fix main actor isolation warnings that are Swift 6 errors in the XCUITests suite - Batch 2 #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: codex_full_base__refactor_fxios-12796_swift_6_migration_fix_main_actor_isolation_warnings_that_are_swift_6_errors_in_the_xcuitests_suite_-_batch_2_pr2
Are you sure you want to change the base?
Changes from all commits
479bf8f
a036560
a7d891e
b5b21d0
ed8f2a5
81d28b8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -43,10 +43,10 @@ class FeatureFlaggedTestSuite: FeatureFlaggedTestBase { | |
| addLaunchArgument(jsonFileName: jsonFileName, featureName: featureName) | ||
| } | ||
|
|
||
| override func setUp() { | ||
| override func setUp() async throws { | ||
| continueAfterFailure = false | ||
| setUpExperimentVariables() | ||
| setUpApp() | ||
| setUpExperimentVariables() | ||
| setUpLaunchArguments() | ||
|
Comment on lines
+46
to
50
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Useful? React with 👍 / 👎. |
||
| setUpScreenGraph() | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Root
AGENTS.mdrule 1 requires every.swiftfile to begin with the exact Mozilla Public License v2.0 header.A11yUtils.swiftnow starts withimport XCTestand no header, which violates that compliance rule and can break licensing checks or CI gates that enforce it. Please restore the exact MPL header at the top of this file.Useful? React with 👍 / 👎.