Fix SwiftLint identifier name violation

- Change 'i' to 'index' in WindowManagerTests loop
This commit is contained in:
Peter Steinberger 2025-05-25 19:26:36 +02:00
parent a547e3a578
commit 2940a9187d

View file

@ -21,8 +21,8 @@ final class WindowManagerTests: XCTestCase {
// If there are windows, verify they're sorted by index
if windows.count > 1 {
for i in 1..<windows.count {
XCTAssertGreaterThanOrEqual(windows[i].windowIndex, windows[i - 1].windowIndex)
for index in 1..<windows.count {
XCTAssertGreaterThanOrEqual(windows[index].windowIndex, windows[index - 1].windowIndex)
}
}
}