Browse Source

Add another keyframe to UT

Luis von der Eltz 3 years ago
parent
commit
8cae955688
1 changed files with 3 additions and 0 deletions
  1. 3 0
      tests/Avalonia.Markup.Xaml.UnitTests/SetterTests.cs

+ 3 - 0
tests/Avalonia.Markup.Xaml.UnitTests/SetterTests.cs

@@ -18,6 +18,9 @@ namespace Avalonia.Markup.Xaml.UnitTests
     <KeyFrame>
         <Setter Property='Content' Value='{Binding}'/>
     </KeyFrame>
+    <KeyFrame>
+        <Setter Property='Content' Value='{Binding}'/>
+    </KeyFrame> 
 </Animation>";
                 var animation = (Animation.Animation)AvaloniaRuntimeXamlLoader.Load(xaml);
                 var setter = (Setter)animation.Children[0].Setters[0];