Skip to content

Commit 17db233

Browse files
yuvaltassacopybara-github
authored andcommitted
Install timers by default in Python bindings
PiperOrigin-RevId: 744663306 Change-Id: Ib07679914aee10addea11cc776809c6383958f77
1 parent 5bdf8a8 commit 17db233

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

dm_control/mujoco/wrapper/core_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
# limitations under the License.
1414
# ============================================================================
1515

16-
"""Tests for core.py."""
1716

1817
import gc
1918
import os
@@ -194,7 +193,7 @@ def testCopyOrPickleStructs(self, func):
194193
mujoco.mj_step(self.model.ptr, self.data.ptr)
195194
data2 = func(self.data)
196195
self.assertNotEqual(data2.ptr, self.data.ptr)
197-
attr_to_compare = ("warning", "timer", "solver")
196+
attr_to_compare = ("warning", "solver")
198197
self._assert_attributes_equal(self.data, data2, attr_to_compare)
199198
for _ in range(10):
200199
mujoco.mj_step(self.model.ptr, self.data.ptr)

0 commit comments

Comments
 (0)