@@ -846,14 +846,14 @@ describe('schema details', () => {
846846 } ) ;
847847 } ) ;
848848
849- test ( 'get scheama for table with hash key only' , ( ) => {
849+ test ( 'get schema for table with hash key only' , ( ) => {
850850 expect ( table . schema ( ) ) . toEqual ( {
851851 partitionKey : TABLE_PARTITION_KEY ,
852852 sortKey : undefined ,
853853 } ) ;
854854 } ) ;
855855
856- test ( 'get scheama for table with hash key + range key' , ( ) => {
856+ test ( 'get schema for table with hash key + range key' , ( ) => {
857857 table = new Table ( stack , 'TableB' , {
858858 tableName : TABLE_NAME ,
859859 partitionKey : TABLE_PARTITION_KEY ,
@@ -866,7 +866,7 @@ describe('schema details', () => {
866866 } ) ;
867867 } ) ;
868868
869- test ( 'get scheama for GSI with hash key' , ( ) => {
869+ test ( 'get schema for GSI with hash key' , ( ) => {
870870 table . addGlobalSecondaryIndex ( {
871871 indexName : GSI_NAME ,
872872 partitionKey : GSI_PARTITION_KEY ,
@@ -878,7 +878,7 @@ describe('schema details', () => {
878878 } ) ;
879879 } ) ;
880880
881- test ( 'get scheama for GSI with hash key + range key' , ( ) => {
881+ test ( 'get schema for GSI with hash key + range key' , ( ) => {
882882 table . addGlobalSecondaryIndex ( {
883883 indexName : GSI_NAME ,
884884 partitionKey : GSI_PARTITION_KEY ,
@@ -891,7 +891,7 @@ describe('schema details', () => {
891891 } ) ;
892892 } ) ;
893893
894- test ( 'get scheama for LSI' , ( ) => {
894+ test ( 'get schema for LSI' , ( ) => {
895895 table . addLocalSecondaryIndex ( {
896896 indexName : LSI_NAME ,
897897 sortKey : LSI_SORT_KEY ,
@@ -903,7 +903,7 @@ describe('schema details', () => {
903903 } ) ;
904904 } ) ;
905905
906- test ( 'get scheama for multiple secondary indexes' , ( ) => {
906+ test ( 'get schema for multiple secondary indexes' , ( ) => {
907907 table . addLocalSecondaryIndex ( {
908908 indexName : LSI_NAME ,
909909 sortKey : LSI_SORT_KEY ,
@@ -926,7 +926,7 @@ describe('schema details', () => {
926926 } ) ;
927927 } ) ;
928928
929- test ( 'get scheama for unknown secondary index' , ( ) => {
929+ test ( 'get schema for unknown secondary index' , ( ) => {
930930 expect ( ( ) => table . schema ( GSI_NAME ) )
931931 . toThrow ( / C a n n o t f i n d s c h e m a f o r i n d e x : M y G S I . U s e ' a d d G l o b a l S e c o n d a r y I n d e x ' o r ' a d d L o c a l S e c o n d a r y I n d e x ' t o a d d i n d e x / ) ;
932932 } ) ;
@@ -1324,7 +1324,7 @@ test('when adding a global secondary index without specifying read and write cap
13241324 ) ;
13251325} ) ;
13261326
1327- test . each ( [ true , false ] ) ( 'when adding a global secondary index with contributoreIngishtsEnabled %s' , ( contributorInsightsEnabled : boolean ) => {
1327+ test . each ( [ true , false ] ) ( 'when adding a global secondary index with contributorInsightsEnabled %s' , ( contributorInsightsEnabled : boolean ) => {
13281328 const stack = new Stack ( ) ;
13291329 const table = new Table ( stack , CONSTRUCT_NAME , {
13301330 partitionKey : TABLE_PARTITION_KEY ,
0 commit comments