Skip to content

Commit 4ec5887

Browse files
committed
fix TU
Signed-off-by: David BRAQUART <[email protected]>
1 parent cd92753 commit 4ec5887

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/gridsuite/modification/server/modifications/tabularcreations/TabularGeneratorCreationsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,14 +353,14 @@ void testUnsupportedTabularCreationType() throws Exception {
353353
UnsupportedOperationException.class,
354354
() -> networkModificationRepository.getModifications(TEST_GROUP_ID, false, true)
355355
);
356-
assertEquals("No sub-modifications loading for creation type: SUBSTATION_CREATION", exception.getMessage());
356+
assertEquals("No sub-modifications loading for modification type: SUBSTATION_CREATION", exception.getMessage());
357357

358358
// try to get via id
359359
exception = assertThrows(
360360
UnsupportedOperationException.class,
361361
() -> networkModificationRepository.getModificationInfo(modifId)
362362
);
363-
assertEquals("No sub-modifications loading for creation type: SUBSTATION_CREATION", exception.getMessage());
363+
assertEquals("No sub-modifications loading for modification type: SUBSTATION_CREATION", exception.getMessage());
364364

365365
// try to update
366366
exception = assertThrows(

0 commit comments

Comments
 (0)