We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d2f7c commit ffde7a6Copy full SHA for ffde7a6
Assets/FluidBehaviorTree/Tests/Editor/Decorators/DecoratorTest.cs
@@ -50,13 +50,6 @@ public void It_should_return_failure_if_a_child_is_missing () {
50
_decorator.Children.RemoveAt(0);
51
Assert.AreEqual(TaskStatus.Failure, _decorator.Update());
52
}
53
-
54
- [Test]
55
- public void Does_not_crash_if_no_child () {
56
- _decorator.Children.RemoveAt(0);
57
58
- Assert.DoesNotThrow(() => _decorator.Update());
59
- }
60
61
62
public class EndMethod : DecoratorTest {
0 commit comments