@@ -34,20 +34,20 @@ public void CloneIsDeep()
3434 {
3535 RepeatCount = 1 ,
3636 ColorTableMode = GifColorTableMode . Global ,
37- DecodedGlobalColorTable = new [ ] { Color . Black , Color . White } ,
37+ GlobalColorTable = new [ ] { Color . Black , Color . White } ,
3838 Comments = new List < string > { "Foo" }
3939 } ;
4040
4141 GifMetadata clone = ( GifMetadata ) meta . DeepClone ( ) ;
4242
4343 clone . RepeatCount = 2 ;
4444 clone . ColorTableMode = GifColorTableMode . Local ;
45- clone . DecodedGlobalColorTable = new [ ] { Color . Black } ;
45+ clone . GlobalColorTable = new [ ] { Color . Black } ;
4646
4747 Assert . False ( meta . RepeatCount . Equals ( clone . RepeatCount ) ) ;
4848 Assert . False ( meta . ColorTableMode . Equals ( clone . ColorTableMode ) ) ;
49- Assert . False ( meta . DecodedGlobalColorTable . Length == clone . DecodedGlobalColorTable . Length ) ;
50- Assert . Equal ( 1 , clone . DecodedGlobalColorTable . Length ) ;
49+ Assert . False ( meta . GlobalColorTable . Value . Length == clone . GlobalColorTable . Value . Length ) ;
50+ Assert . Equal ( 1 , clone . GlobalColorTable . Value . Length ) ;
5151 Assert . False ( meta . Comments . Equals ( clone . Comments ) ) ;
5252 Assert . True ( meta . Comments . SequenceEqual ( clone . Comments ) ) ;
5353 }
@@ -208,7 +208,7 @@ public void Identify_Frames(
208208
209209 if ( colorTableMode == GifColorTableMode . Global )
210210 {
211- Assert . Equal ( globalColorTableLength , gifMetadata . DecodedGlobalColorTable . Length ) ;
211+ Assert . Equal ( globalColorTableLength , gifMetadata . GlobalColorTable . Value . Length ) ;
212212 }
213213
214214 Assert . Equal ( frameDelay , gifFrameMetadata . FrameDelay ) ;
0 commit comments