Fix ApplicationInfo property name in test

- Change 'name' to 'app_name' to match actual ApplicationInfo struct
This commit is contained in:
Peter Steinberger 2025-05-25 19:25:35 +02:00
parent cd4e8b5d52
commit 431ff502a8

View file

@ -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")
}