Skip to content

Commit

Permalink
fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jsumners-nr committed Mar 6, 2024
1 parent 62e1f05 commit 62106df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/llm/bedrock-response.tap.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ tap.test('non-conforming response is handled gracefully', async (t) => {
t.equal(res.finishReason, undefined)
t.same(res.headers, undefined)
t.equal(res.id, undefined)
t.equal(res.inputTokenCount, 0)
t.equal(res.outputTokenCount, 0)
t.equal(res.inputTokenCount, undefined)
t.equal(res.outputTokenCount, undefined)
t.equal(res.requestId, undefined)
t.equal(res.statusCode, 200)
})
Expand Down

0 comments on commit 62106df

Please sign in to comment.