Skip to content

Commit

Permalink
Implement code suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
TomWerm committed Mar 16, 2023
1 parent 0407629 commit 0cdc416
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void elementDeletionDoesNotRemoveUuid() {

@Test
@DisplayName("cleanup resolver when saving after element removal")
void cleanupAfterElementRemovalRemovesId() {
void cleanupAfterElementRemovalRemovesUuid() {
var root = aet.Root();
String uuid = uuidResolver.registerEObject(root);
uuidResolver.endTransaction();
Expand All @@ -159,7 +159,7 @@ void cleanupAfterElementRemovalRemovesId() {

@Test
@DisplayName("cleanup resolver when saving resource after element removal")
void cleanupAfterElementRemovalRemovesIdWithResource() {
void cleanupAfterElementRemovalRemovesUuidWithResource() {
var root = aet.Root();
URI resourceUri = URI.createFileURI(testProjectPath.resolve("root.aet").toString());
Resource rootResource = resourceSet.createResource(resourceUri);
Expand Down

0 comments on commit 0cdc416

Please sign in to comment.