Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Dupuy <[email protected]>
  • Loading branch information
flo-dup committed Oct 9, 2024
1 parent 46ba0d2 commit ad182aa
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
import com.powsybl.dynawo.models.buses.InfiniteBusBuilder;
import com.powsybl.dynawo.models.buses.StandardBusBuilder;
import com.powsybl.dynawo.models.generators.*;
import com.powsybl.dynawo.models.loads.*;
import com.powsybl.dynawo.models.hvdc.HvdcPBuilder;
import com.powsybl.dynawo.models.hvdc.HvdcVscBuilder;
import com.powsybl.dynawo.models.lines.LineBuilder;
import com.powsybl.dynawo.models.loads.*;
import com.powsybl.dynawo.models.shunts.BaseShuntBuilder;
import com.powsybl.dynawo.models.svarcs.BaseStaticVarCompensatorBuilder;
import com.powsybl.dynawo.models.transformers.TransformerFixedRatioBuilder;
Expand Down Expand Up @@ -152,7 +152,7 @@ void testNotInstantiableEquipment() {
// Line
assertNull(LineBuilder.of(NETWORK).build());
// Generator
assertNull(GeneratorFictitiousBuilder.of(NETWORK).build());
assertNull(BaseGeneratorBuilder.of(NETWORK).build());
assertNull(SynchronizedGeneratorBuilder.of(NETWORK).build());
assertNull(SynchronousGeneratorBuilder.of(NETWORK).build());
assertNull(WeccBuilder.of(NETWORK).build());
Expand Down

0 comments on commit ad182aa

Please sign in to comment.