Skip to content
This repository was archived by the owner on Nov 16, 2025. It is now read-only.

Commit 3acfada

Browse files
committed
fix: resolve final test compilation issues
- Add missing Foundation import in ClaudeSessionTrackerTests for TimeInterval and UUID types - Remove unnecessary nil check for non-optional TokenColor in TokenDebuggerTests - All tests now compile successfully without errors or warnings
1 parent f726429 commit 3acfada

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

VibeMeterTests/Services/ClaudeSessionTrackerTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import Foundation
12
import Testing
23
@testable import VibeMeter
34

VibeMeterTests/TokenDebuggerTests.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,8 @@ struct TokenDebuggerTests {
3636

3737
#expect(!viz.segments.isEmpty)
3838

39-
// Verify all segments have valid colors
39+
// Verify all segments have valid tokens
4040
for segment in viz.segments {
41-
#expect(segment.color != nil)
4241
#expect(segment.token >= 0)
4342
}
4443
}

0 commit comments

Comments
 (0)