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 6abf361 commit d00731cCopy full SHA for d00731c
lldb/test/API/tools/lldb-dap/variables/children/TestDAP_variables_children.py
@@ -31,7 +31,7 @@ def test_get_num_children(self):
31
indexed = next(filter(lambda x: x["name"] == "indexed", local_vars))
32
not_indexed = next(filter(lambda x: x["name"] == "not_indexed", local_vars))
33
self.assertIn("indexedVariables", indexed)
34
- self.assertEquals(indexed["indexedVariables"], 1)
+ self.assertEqual(indexed["indexedVariables"], 1)
35
self.assertNotIn("indexedVariables", not_indexed)
36
37
self.assertIn(
0 commit comments