mirror of https://github.com/nucypher/pyUmbral.git
Add test for point.__sub__
parent
c5cd5fc8f0
commit
1fd112e94e
|
@ -7,6 +7,7 @@ def test_mocked_openssl_point_arithmetic(mock_openssl, random_ec_point1, random_
|
|||
operations_that_construct = (
|
||||
random_ec_point1 * random_ec_curvebn1, # __mul__
|
||||
random_ec_point1 + random_ec_point2, # __add__
|
||||
random_ec_point1 - random_ec_point2, # __sub__
|
||||
~random_ec_point1 # __invert__
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue