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 a1a74ec commit e7d1a09Copy full SHA for e7d1a09
tests/test_container.py
@@ -75,14 +75,16 @@ def test_scene_remove():
75
scene = Scene()
76
container_remove(scene, lambda: scene.mobjects)
77
78
+
79
def test_value_tracker_increment_value():
80
"""Test ValueTracker.increment_value()"""
81
tracker = ValueTracker(0.0)
82
tracker.increment_value(10.0)
- assert(tracker.get_value() == 10.0)
83
+ assert tracker.get_value() == 10.0
84
85
86
def test_value_tracker_iadd():
87
"""Test ValueTracker.__iadd__()"""
88
89
tracker += 10.0
90
0 commit comments