From 6ae7faef8c03965f7df6758257b4f294d0da975f Mon Sep 17 00:00:00 2001 From: Staci Cooper Date: Fri, 11 Jun 2021 09:59:13 -0700 Subject: [PATCH] Fix typo in test --- packages/blocks/src/api/test/factory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/blocks/src/api/test/factory.js b/packages/blocks/src/api/test/factory.js index 473212d680ffa..91408aceb340e 100644 --- a/packages/blocks/src/api/test/factory.js +++ b/packages/blocks/src/api/test/factory.js @@ -473,7 +473,7 @@ describe( 'block factory', () => { const clonedBlock = __experimentalCloneSanitizedBlock( block, {} ); expect( clonedBlock.attributes ).toEqual( { - uniqueAttribueWithDefault: 'default-value', + uniqueAttributeWithDefault: 'default-value', } ); } ); } );