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
1 changed files with 3 additions and 4 deletions
|
@ -155,10 +155,9 @@ class BignumOperation(BignumTarget):
|
|||
@classmethod
|
||||
def get_value_pairs(cls) -> Iterator[Tuple[str, ...]]:
|
||||
"""Generate value pairs."""
|
||||
for pair in set(
|
||||
list(itertools.combinations(cls.input_vals, 2)) +
|
||||
cls.input_cases
|
||||
):
|
||||
for pair in list(
|
||||
itertools.combinations(cls.input_vals, 2)
|
||||
) + cls.input_cases:
|
||||
yield pair
|
||||
|
||||
@classmethod
|
||||
|
|
Loading…
Reference in a new issue