summaryrefslogtreecommitdiff
path: root/HutchTests/TicketListViewModelTests.swift
diff options
context:
space:
mode:
Diffstat (limited to 'HutchTests/TicketListViewModelTests.swift')
-rw-r--r--HutchTests/TicketListViewModelTests.swift6
1 files changed, 3 insertions, 3 deletions
diff --git a/HutchTests/TicketListViewModelTests.swift b/HutchTests/TicketListViewModelTests.swift
index 7fa5449..a203091 100644
--- a/HutchTests/TicketListViewModelTests.swift
+++ b/HutchTests/TicketListViewModelTests.swift
@@ -162,8 +162,8 @@ struct TicketListViewModelTests {
"status": TicketStatus.resolved.rawValue,
"resolution": TicketResolution.fixed.rawValue
]
- #expect(input["status"] as? String == "resolved")
- #expect(input["resolution"] as? String == "fixed")
+ #expect(input["status"] as? String == "RESOLVED")
+ #expect(input["resolution"] as? String == "FIXED")
}
@Test
@@ -172,7 +172,7 @@ struct TicketListViewModelTests {
let input: [String: any Sendable] = [
"status": TicketStatus.reported.rawValue
]
- #expect(input["status"] as? String == "reported")
+ #expect(input["status"] as? String == "REPORTED")
#expect(input["resolution"] == nil)
}