Skip to content

Commit e823026

Browse files
committed
Make TestMGDA extend WeakStationarityProperty
1 parent ea5a1f6 commit e823026

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/unit/aggregation/test_mgda.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,17 @@
99
ExpectedStructureProperty,
1010
NonConflictingProperty,
1111
PermutationInvarianceProperty,
12+
WeakStationarityProperty,
1213
)
1314

1415

1516
@mark.parametrize("aggregator", [MGDA()])
16-
class TestMGDA(ExpectedStructureProperty, NonConflictingProperty, PermutationInvarianceProperty):
17+
class TestMGDA(
18+
ExpectedStructureProperty,
19+
NonConflictingProperty,
20+
PermutationInvarianceProperty,
21+
WeakStationarityProperty,
22+
):
1723
pass
1824

1925

0 commit comments

Comments
 (0)