Skip to content

Commit

Permalink
test: compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Dec 19, 2024
1 parent a5d4f5c commit 3c22cde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/commands/agent/generate/testset.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ describe('constructTestSetXML', () => {
const testCases = [
{
utterance: 'hello',
actionSequenceExpectedValue: 'foo,bar',
actionSequenceExpectedValue: ['foo', 'bar'],
botRatingExpectedValue: 'baz',
topicSequenceExpectedValue: 'qux',
},
{
utterance: 'goodbye',
actionSequenceExpectedValue: 'foo,bar',
actionSequenceExpectedValue: ['foo', 'bar'],
botRatingExpectedValue: 'baz',
topicSequenceExpectedValue: 'qux',
},
{
utterance: 'how are you',
actionSequenceExpectedValue: 'foo,bar',
actionSequenceExpectedValue: ['foo', 'bar'],
botRatingExpectedValue: 'baz',
topicSequenceExpectedValue: 'qux',
},
Expand Down

0 comments on commit 3c22cde

Please sign in to comment.