Skip to content

Commit 99d7651

Browse files
authored
test(aggregation): Remove duplicate test parametrizations (#266)
* Make weak_stationary_matrices not contain strong_stationary_matrices
1 parent 480705b commit 99d7651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/aggregation/_inputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def _generate_semi_orthonormal_complement(Q: Tensor) -> Tensor:
108108
strong_stationary_matrices = [
109109
_generate_strong_stationary_matrix(m, n) for m, n in _stationary_matrices_shapes
110110
]
111-
weak_stationary_matrices = strong_stationary_matrices + [
111+
weak_stationary_matrices = [
112112
_generate_weak_stationary_matrix(m, n) for m, n in _stationary_matrices_shapes
113113
]
114114
typical_matrices = zero_matrices + matrices + weak_stationary_matrices + strong_stationary_matrices

0 commit comments

Comments
 (0)