macos: fix unit tests for notFound change

This commit is contained in:
Mitchell Hashimoto
2025-10-10 09:45:32 -07:00
parent c8ea42b894
commit bac2419343
2 changed files with 3 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ struct UpdateViewModelTests {
@Test func testNotFoundText() {
let viewModel = UpdateViewModel()
viewModel.state = .notFound
viewModel.state = .notFound(.init(acknowledgement: {}))
#expect(viewModel.text == "No Updates Available")
}