Skip to content

Commit dd7752f

Browse files
committed
test(voice): use AudioFrame.timestamp (not timestampMs) in STT regression test
CI typecheck failed because AudioFrame.timestamp is the canonical field; timestampMs was a slip in the regression test I just added. Spec still passes — only the property name was wrong.
1 parent 4061bfb commit dd7752f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/io/voice-pipeline/__tests__/provider-health.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ describe('provider HealthyProvider implementations', () => {
107107
session.pushAudio({
108108
samples,
109109
sampleRate: 16000,
110-
timestampMs: 0,
110+
timestamp: 0,
111111
});
112112
await session.flush();
113113

0 commit comments

Comments
 (0)