@@ -317,9 +317,10 @@ TEST_F(DependencyClosureTest, ExtractAllGlyphConditions_FullFont) {
317317 uint32_t parenleft = cp_to_seg.at (' (' );
318318 uint32_t parenright = cp_to_seg.at (' )' );
319319
320- EXPECT_EQ (conditions->at (12 /* parenleft */ ).ToString (),
321- // '(' is accesible from either '(' or ')' due to unicode mirroring.
322- absl::StrCat (" if ((s" , parenleft, " OR s" , parenright," )) then p0" ));
320+ EXPECT_EQ (
321+ conditions->at (12 /* parenleft */ ).ToString (),
322+ // '(' is accesible from either '(' or ')' due to unicode mirroring.
323+ absl::StrCat (" if ((s" , parenleft, " OR s" , parenright, " )) then p0" ));
323324
324325 // small caps AE is accesible via numerous pathways and forms a complex
325326 // composite condition (smcp, c2sc, and glyph component substitutions)
@@ -329,12 +330,12 @@ TEST_F(DependencyClosureTest, ExtractAllGlyphConditions_FullFont) {
329330 uint32_t aeacute = cp_to_seg.at (0x1FD );
330331 uint32_t smcp = layout_to_seg.at (HB_TAG (' s' , ' m' , ' c' , ' p' ));
331332 uint32_t c2sc = layout_to_seg.at (HB_TAG (' c' , ' 2' , ' s' , ' c' ));
332- EXPECT_EQ (conditions-> at ( 627 /* small caps AE */ ). ToString (),
333- absl::StrCat (
334- " if ((s" , AE, " OR s" , ae," OR s" , AEacute, " OR s" , aeacute, " ) " ,
335- " AND (s" , AE, " OR s" , AEacute, " OR s" , smcp, " ) " ,
336- " AND (s" , ae," OR s" , aeacute," OR s" , c2sc," ) " ,
337- " AND (s" , c2sc," OR s" , smcp, " )) then p0" ));
333+ EXPECT_EQ (
334+ conditions-> at ( 627 /* small caps AE */ ). ToString (),
335+ absl::StrCat ( " if ((s" , AE, " OR s" , ae, " OR s" , AEacute, " OR s" ,
336+ aeacute, " ) " , " AND (s" , AE, " OR s" , AEacute, " OR s" , smcp,
337+ " ) " , " AND (s" , ae, " OR s" , aeacute, " OR s" , c2sc, " ) " ,
338+ " AND (s" , c2sc, " OR s" , smcp, " )) then p0" ));
338339}
339340
340341TEST_F (DependencyClosureTest, ExtractAllGlyphConditions_PhaseCycle) {
0 commit comments