File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ def setUp(self):
1515 |-- b (age=65)
1616 | |-- d (age=40)
1717 | +-- e (age=35)
18- | |-- g (age=10)
18+ | |-- g (age=10)
1919 | +-- h (age=6)
2020 +-- c (age=60)
2121 +-- f (age=38)
@@ -71,14 +71,14 @@ def test_set_children_type_error(self):
7171 with pytest .raises (AttributeError ):
7272 self .a .children = [self .b , children ]
7373
74- def test_set_children_loop_error (self ):
74+ def test_set_children_loop_error (self ):
7575 # No error without assertion
7676 self .a .children = [self .b , self .a ]
7777
7878 # No error without assertion
7979 self .a .children = [self .b , self .c ]
8080 self .c .children = [self .d , self .e , self .f ]
81- self .f .children = [self .a ]
81+ self .f .children = [self .a ]
8282
8383 def test_set_duplicate_children_error (self ):
8484 # No error without assertion
You can’t perform that action at this time.
0 commit comments