Skip to content

Commit

Permalink
fix other use of "lazy"
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed May 22, 2024
1 parent beea249 commit a0a3885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kbn-config-schema/src/types/lazy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('lazy', () => {
const object: Type<RecursiveType> = schema.object(
{
name: schema.string(),
self: lazy<RecursiveType>(id),
self: schema.lazy<RecursiveType>(id),
},
{ meta: { id } }
);
Expand Down

0 comments on commit a0a3885

Please sign in to comment.