Skip to content

Commit 8808750

Browse files
committed
fix: ensure publicId is consistently formatted to lowercase in createJob test
1 parent aa8a23e commit 8808750

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/application/pipeline-app.service.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ test('PipelineAppService.createJob normalizes defaults and delegates to shared j
3636

3737
assert.equal(result.title, 'Demo Video');
3838
assert.ok(result.jobId.startsWith('job_'));
39-
assert.ok(result.publicId.startsWith('demo_video_'));
39+
assert.ok(result.publicId.toLowerCase().startsWith('demo_video_'));
4040
assert.equal(captured.title, 'Demo Video');
4141
assert.equal(captured.options.language, 'english');
4242
assert.equal(captured.options.showText, true);

0 commit comments

Comments
 (0)