(self, data)
| 6781 | ], |
| 6782 | ) |
| 6783 | def test_from_bytes_invalid(self, data): |
| 6784 | with pytest.raises(ValueError): |
| 6785 | x509.Name.from_bytes(data) |
| 6786 | |
| 6787 | def test_bitstring_encoding(self): |
| 6788 | name = x509.Name( |
nothing calls this directly
no test coverage detected