@@ -132,13 +132,13 @@ void testCheckModificationConflict() {
132132 .withMessageTemplate ("test" )
133133 .build ();
134134
135- tabularModification .checkShuntCompensatorModification ( network , shuntModification , reportNode );
135+ tabularModification .specificCheck ( shuntModification , network , reportNode );
136136
137137 shuntModification .setShuntCompensatorType (AttributeModification .toAttributeModification (ShuntCompensatorType .CAPACITOR , OperationType .SET ));
138- tabularModification .checkShuntCompensatorModification ( network , shuntModification , reportNode );
138+ tabularModification .specificCheck ( shuntModification , network , reportNode );
139139
140140 shuntModification .setMaxQAtNominalV (null );
141- tabularModification .checkShuntCompensatorModification ( network , shuntModification , reportNode );
141+ tabularModification .specificCheck ( shuntModification , network , reportNode );
142142
143143 assertEquals (TypedValue .WARN_SEVERITY , reportNode .getChildren ().get (0 ).getValues ().get (ReportConstants .SEVERITY_KEY ));
144144 }
@@ -167,7 +167,7 @@ void testCheckModificationNonLinear() {
167167 .withResourceBundles ("i18n.reports" )
168168 .withMessageTemplate ("test" )
169169 .build ();
170- tabularModification .checkShuntCompensatorModification ( network , shuntModification , reportNode );
170+ tabularModification .specificCheck ( shuntModification , network , reportNode );
171171
172172 assertEquals (TypedValue .ERROR_SEVERITY , reportNode .getChildren ().get (0 ).getValues ().get (ReportConstants .SEVERITY_KEY ));
173173
@@ -197,7 +197,7 @@ void testCheckModificationOK() {
197197 .withMessageTemplate ("test" )
198198 .build ();
199199
200- tabularModification .checkShuntCompensatorModification ( network , shuntModification , reportNode );
200+ tabularModification .specificCheck ( shuntModification , network , reportNode );
201201 assertEquals (0 , reportNode .getChildren ().size ());
202202 }
203203}
0 commit comments