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 @@ -73,10 +73,10 @@ describe("Helper", () => {
7373 manifestUri : brideDiff . id ,
7474 } ) ;
7575 const metadataGroups = helper . getMetadata ( ) ;
76- const summary = [ getMetadataValue ( metadataGroups , "summary" ) ] ;
77- const description = [ getMetadataValue ( metadataGroups , "description" ) ] ;
78- expect ( description [ 0 ] ) . toEqual ( [ "fnord" ] ) ;
79- expect ( summary [ 0 ] ) . toEqual ( [ "Bride of the Tomb" ] ) ;
76+ const summary = getMetadataValue ( metadataGroups , "summary" ) ;
77+ const description = getMetadataValue ( metadataGroups , "description" ) ;
78+ expect ( description ) . toEqual ( [ "fnord" ] ) ;
79+ expect ( summary ) . toEqual ( [ "Bride of the Tomb" ] ) ;
8080 } ) ;
8181
8282 test ( "getMetadata records summary as Description when locale is not En in metadata for brideDiff manifest" , async ( ) => {
You can’t perform that action at this time.
0 commit comments