You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename remaining occurrences of the old helper. (#8583)
Rename remaining occurrences of the old helper.
### Motivation:
My local test failed to build after #8569 with
```
…/Tests/WorkspaceTests/WorkspaceTests.swift:16148:13: error: cannot find 'skipOnWindowsAsTestCurrentlyFails' in scope
16146 |
16147 | func testInvalidTrait_WhenParentPackageEnablesTraits() async throws {
16148 | try skipOnWindowsAsTestCurrentlyFails(because: #"\tmp\ws doesn't exist in file system"#)
| `- error: cannot find 'skipOnWindowsAsTestCurrentlyFails' in scope
16149 |
16150 | let sandbox = AbsolutePath("/tmp/ws/")
```
I checked, and it appears to be leftovers after #8569:
```
% rg skipOnWindowsAsTestCurrentlyFails
Tests/WorkspaceTests/WorkspaceTests.swift
16148: try skipOnWindowsAsTestCurrentlyFails(because: #"\tmp\ws doesn't exist in file system"#)
16211: try skipOnWindowsAsTestCurrentlyFails(because: #"\tmp\ws doesn't exist in file system"#)
```
### Modifications:
Renamed `skipOnWindowsAsTestCurrentlyFails` to `XCTSkipOnWindows`.
### Result:
Tests build and pass.
0 commit comments