Skip to content

Commit

Permalink
fix undocumented breaking change in cajs
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-bompart committed Oct 10, 2023
1 parent 14acbdd commit 14833f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const logOpenGeneratedAnswerSource = (
return client.makeOpenGeneratedAnswerSource({
generativeQuestionAnsweringId,
permanentId: citation.permanentid,
id: citation.id,
citationId: citation.id,
});
}
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ function generatedAnswerExpectations(selector: GeneratedAnswerSelector) {
'generativeQuestionAnsweringId',
streamId
);
expect(customData).to.have.property('id', citation.id);
expect(customData).to.have.property('citationId', citation.id);
expect(customData).to.have.property(
'permanentId',
citation.permanentid
Expand Down

0 comments on commit 14833f9

Please sign in to comment.