@@ -33,7 +33,7 @@ public void CloneIsDeep()
3333 Gamma = 2 ,
3434 TextData = new List < PngTextData > { new PngTextData ( "name" , "value" , "foo" , "bar" ) } ,
3535 RepeatCount = 123 ,
36- DefaultImageAnimated = false
36+ AnimateRootFrame = false
3737 } ;
3838
3939 PngMetadata clone = ( PngMetadata ) meta . DeepClone ( ) ;
@@ -45,7 +45,7 @@ public void CloneIsDeep()
4545 Assert . False ( meta . TextData . Equals ( clone . TextData ) ) ;
4646 Assert . True ( meta . TextData . SequenceEqual ( clone . TextData ) ) ;
4747 Assert . True ( meta . RepeatCount == clone . RepeatCount ) ;
48- Assert . True ( meta . DefaultImageAnimated == clone . DefaultImageAnimated ) ;
48+ Assert . True ( meta . AnimateRootFrame == clone . AnimateRootFrame ) ;
4949
5050 clone . BitDepth = PngBitDepth . Bit2 ;
5151 clone . ColorType = PngColorType . Palette ;
@@ -153,7 +153,7 @@ public void Decode_IdentifiesDefaultFrameNotAnimated<TPixel>(TestImageProvider<T
153153 {
154154 using Image < TPixel > image = provider . GetImage ( PngDecoder . Instance ) ;
155155 PngMetadata meta = image . Metadata . GetFormatMetadata ( PngFormat . Instance ) ;
156- Assert . False ( meta . DefaultImageAnimated ) ;
156+ Assert . False ( meta . AnimateRootFrame ) ;
157157 }
158158
159159 [ Theory ]
@@ -163,7 +163,7 @@ public void Decode_IdentifiesDefaultFrameAnimated<TPixel>(TestImageProvider<TPix
163163 {
164164 using Image < TPixel > image = provider . GetImage ( PngDecoder . Instance ) ;
165165 PngMetadata meta = image . Metadata . GetFormatMetadata ( PngFormat . Instance ) ;
166- Assert . True ( meta . DefaultImageAnimated ) ;
166+ Assert . True ( meta . AnimateRootFrame ) ;
167167 }
168168
169169 [ Theory ]
0 commit comments