We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bdf8a8 commit 17db233Copy full SHA for 17db233
1 file changed
dm_control/mujoco/wrapper/core_test.py
@@ -13,7 +13,6 @@
13
# limitations under the License.
14
# ============================================================================
15
16
-"""Tests for core.py."""
17
18
import gc
19
import os
@@ -194,7 +193,7 @@ def testCopyOrPickleStructs(self, func):
194
193
mujoco.mj_step(self.model.ptr, self.data.ptr)
195
data2 = func(self.data)
196
self.assertNotEqual(data2.ptr, self.data.ptr)
197
- attr_to_compare = ("warning", "timer", "solver")
+ attr_to_compare = ("warning", "solver")
198
self._assert_attributes_equal(self.data, data2, attr_to_compare)
199
for _ in range(10):
200
0 commit comments