Skip to content

Commit

Permalink
Revert "check styles"
Browse files Browse the repository at this point in the history
This reverts commit 99d9dbd.
  • Loading branch information
jamal-khey committed Aug 5, 2024
1 parent 99d9dbd commit 00c954d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test/java/com/powsybl/caseserver/CaseControllerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -477,15 +477,14 @@ public void searchCaseTest() throws Exception {
.andExpect(status().isOk())
.andReturn().getResponse().getContentAsString();

UUID aCaseUuid;
// = UUID.fromString(aCase.substring(1, aCase.length() - 1));
UUID aCaseUuid = UUID.fromString(aCase.substring(1, aCase.length() - 1));

// assert that broker message has been sent and properties are the right ones
Message<byte[]> messageImport = outputDestination.receive(1000, "case.import.destination");
assertEquals("", new String(messageImport.getPayload()));
MessageHeaders headersCase = messageImport.getHeaders();
assertEquals("testCase.xiidm", headersCase.get(CaseInfos.NAME_HEADER_KEY));
// assertEquals(aCaseUuid, headersCase.get(CaseInfos.UUID_HEADER_KEY));
assertEquals(aCaseUuid, headersCase.get(CaseInfos.UUID_HEADER_KEY));
assertEquals("XIIDM", headersCase.get(CaseInfos.FORMAT_HEADER_KEY));

// import CGMES french file
Expand Down

0 comments on commit 00c954d

Please sign in to comment.