mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-01-27 06:35:22 +00:00
Remove set() to preserve test case order
Signed-off-by: Werner Lewis <werner.lewis@arm.com>
This commit is contained in:
parent
a51fe2b27e
commit
b17ca8ad80
@ -155,10 +155,9 @@ class BignumOperation(BignumTarget):
|
|||||||
@classmethod
|
@classmethod
|
||||||
def get_value_pairs(cls) -> Iterator[Tuple[str, ...]]:
|
def get_value_pairs(cls) -> Iterator[Tuple[str, ...]]:
|
||||||
"""Generate value pairs."""
|
"""Generate value pairs."""
|
||||||
for pair in set(
|
for pair in list(
|
||||||
list(itertools.combinations(cls.input_vals, 2)) +
|
itertools.combinations(cls.input_vals, 2)
|
||||||
cls.input_cases
|
) + cls.input_cases:
|
||||||
):
|
|
||||||
yield pair
|
yield pair
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
Loading…
x
Reference in New Issue
Block a user