mirror of
https://github.com/samsonjs/Peekaboo.git
synced 2026-06-28 05:29:34 +00:00
Fix ApplicationInfo property name in test
- Change 'name' to 'app_name' to match actual ApplicationInfo struct
This commit is contained in:
parent
cd4e8b5d52
commit
431ff502a8
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ final class ApplicationFinderTests: XCTestCase {
|
|||
XCTAssertGreaterThan(apps.count, 0)
|
||||
|
||||
// Should include Finder
|
||||
let hasFinder = apps.contains { $0.name == "Finder" }
|
||||
let hasFinder = apps.contains { $0.app_name == "Finder" }
|
||||
XCTAssertTrue(hasFinder, "Finder should always be running")
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue