Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanKiral committed Apr 2, 2024
1 parent 8839d57 commit 820d863
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/integration/importExport/utils/compare.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,8 @@ const createPrepareTypeElementReferences = (
contentGroups: ReadonlyArray<ContentTypeContracts.IContentTypeGroup>,
): PrepareReferencesFnc<ElementContracts.IContentTypeElementContract> =>
element => {
const elementWithGroup =
element as (ElementContracts.IContentTypeElementContract & ContentTypeElements.IElementShared);
const baseElement: ElementContracts.IContentTypeElementContract & ContentTypeElements.IElementShared = {
const elementWithGroup = element as (ElementContracts.IContentTypeElementContract & ContentTypeElements.Element);
const baseElement: ElementContracts.IContentTypeElementContract & ContentTypeElements.Element = {
...elementWithGroup,
id: "-",
external_id: "-",
Expand Down

0 comments on commit 820d863

Please sign in to comment.