@@ -50,7 +50,7 @@ TEST_F(EntityTest, ThreeStrokesInOnePath) {
5050 Entity entity;
5151 entity.SetPath (path);
5252 auto contents = std::make_unique<SolidStrokeContents>();
53- contents->SetColor (Color::Red (). Premultiply () );
53+ contents->SetColor (Color::Red ());
5454 contents->SetStrokeSize (5.0 );
5555 entity.SetContents (std::move (contents));
5656 ASSERT_TRUE (OpenPlaygroundHere (entity));
@@ -80,7 +80,7 @@ TEST_F(EntityTest, TriangleInsideASquare) {
8080 Entity entity;
8181 entity.SetPath (path);
8282 auto contents = std::make_unique<SolidStrokeContents>();
83- contents->SetColor (Color::Red (). Premultiply () );
83+ contents->SetColor (Color::Red ());
8484 contents->SetStrokeSize (20.0 );
8585 entity.SetContents (std::move (contents));
8686
@@ -123,7 +123,7 @@ TEST_F(EntityTest, StrokeCapAndJoinTest) {
123123 Path path, SolidStrokeContents::Cap cap,
124124 SolidStrokeContents::Join join) {
125125 auto contents = std::make_unique<SolidStrokeContents>();
126- contents->SetColor (Color::Red (). Premultiply () );
126+ contents->SetColor (Color::Red ());
127127 contents->SetStrokeSize (width);
128128 contents->SetStrokeCap (cap);
129129 contents->SetStrokeJoin (join);
0 commit comments