Add test for point.__sub__

pull/152/head
David Núñez 2018-05-28 12:15:06 +02:00 committed by David Nuñez
parent c5cd5fc8f0
commit 1fd112e94e
1 changed files with 1 additions and 0 deletions

View File

@ -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__
)