File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,10 +62,10 @@ describe("Helper", () => {
6262 locale : "cy" ,
6363 } ) ;
6464 const metadataGroups = helper . getMetadata ( ) ;
65- const summary = [ getMetadataValue ( metadataGroups , "summary" ) ] ;
66- const description = [ getMetadataValue ( metadataGroups , "description" ) ] ;
67- expect ( description [ 0 ] ) . toEqual ( [ "Bride of the Tomb" ] ) ;
68- expect ( summary [ 0 ] ) . toEqual ( [ ] ) ;
65+ const summary = getMetadataValue ( metadataGroups , "summary" ) ;
66+ const description = getMetadataValue ( metadataGroups , "description" ) ;
67+ expect ( description ) . toEqual ( [ "Bride of the Tomb" ] ) ;
68+ expect ( summary ) . toEqual ( [ ] ) ;
6969 } ) ;
7070
7171 test ( "getMetadata records summary as summary when no duplicate value present in metadata for brideDiff manifest" , async ( ) => {
You can’t perform that action at this time.
0 commit comments