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 e425009 commit 717ebb9Copy full SHA for 717ebb9
tests/test_graph.py
@@ -41,9 +41,7 @@ def test_example_nodes(self):
41
non_variables = {
42
node for node in example.graph.nodes() if not isinstance(node, Variable)
43
}
44
- self.assertEquals(
45
- 0, len(non_variables), msg=f"Found non-variables: {non_variables}"
46
- )
+ self.assertEqual(0, len(non_variables), msg=f"Found non-variables: {non_variables}")
47
48
def test_causaleffect_str_verma_1(self):
49
"""Test generating R code for the figure 1A graph for causaleffect."""
0 commit comments