Skip to content

Commit 2f0cb57

Browse files
committed
* In elicitation.test.ts
- fix default return types on single-select with titles
1 parent 73e33a9 commit 2f0cb57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server/elicitation.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ function testElicitationFlow(validatorProvider: typeof ajvProvider | typeof cfWo
529529
{ const: '#00FF00', title: 'Green' },
530530
{ const: '#0000FF', title: 'Blue' }
531531
],
532-
default: ['#00FF00']
532+
default: '#00FF00'
533533
}
534534
},
535535
required: ['color']
@@ -719,7 +719,7 @@ function testElicitationFlow(validatorProvider: typeof ajvProvider | typeof cfWo
719719
{ const: '#00FF00', title: 'Green' },
720720
{ const: '#0000FF', title: 'Blue' }
721721
],
722-
default: ['#00FF00']
722+
default: '#00FF00'
723723
}
724724
},
725725
required: ['color']

0 commit comments

Comments
 (0)