We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d970314 commit 52fd52cCopy full SHA for 52fd52c
1 file changed
Robust.Client.IntegrationTests/UserInterface/ControlTest.cs
@@ -169,7 +169,7 @@ public void TestAnimations()
169
control.PlayAnimation(animation, "foo");
170
control.DoFrameUpdateRecursive(new FrameEventArgs(0.5f));
171
172
- Assert.That(control.Foo, new ApproxEqualityConstraint(0f)); // Should still be 0.
+ Assert.That(control.Foo, new ApproxEqualityConstraint(0.5f)); // Should be 0.5 as half a second elapsed and our 1s keyframe is at 1.
173
174
control.DoFrameUpdateRecursive(new FrameEventArgs(0.5001f));
175
0 commit comments