mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-04-17 13:15:49 +00:00
Fix SwiftLint identifier name violation
- Change 'i' to 'index' in WindowManagerTests loop
This commit is contained in:
parent
a547e3a578
commit
2940a9187d
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue