From e7c12429f1f430e96b5f73b19477740c20c81a8e Mon Sep 17 00:00:00 2001 From: Jeremy Nimmer Date: Mon, 24 Jun 2019 16:31:22 -0400 Subject: [PATCH] pydrake: Rename a unittest method to avoid determinism bug This test case fails under python3 -c dbg with certain names, but not others. This works around spurios failures that show up as of commit 12a8432d01f4cad7b4d9caab084d143b5600bcee. --- bindings/pydrake/systems/test/custom_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/pydrake/systems/test/custom_test.py b/bindings/pydrake/systems/test/custom_test.py index 5e9f28796aac..ffcb3580ec66 100644 --- a/bindings/pydrake/systems/test/custom_test.py +++ b/bindings/pydrake/systems/test/custom_test.py @@ -227,7 +227,7 @@ def test_leaf_system_per_item_tickets(self): ]: self.assertIsInstance(func(arg), DependencyTicket, func) - def test_leaf_system_overrides(self): + def test_all_leaf_system_overrides(self): test = self class TrivialSystem(LeafSystem):