(self)
| 4620 | self.assertEqual(data2, data) |
| 4621 | |
| 4622 | def test_deep_nested_struct_tuple(self): |
| 4623 | self.deep_nested_struct(lambda data: (data,)) |
| 4624 | |
| 4625 | def test_deep_nested_struct_list(self): |
| 4626 | self.deep_nested_struct(lambda data: [data]) |
nothing calls this directly
no test coverage detected