justinmclean opened a new issue, #8282:
URL: https://github.com/apache/gravitino/issues/8282
### What would you like to be improved?
In
core/src/test/java/org/apache/gravitino/storage/relational/service/TestModelMetaService.java:
```
ModelEntity updatedModel =
ModelEntity.builder()
.withId(modelEntity.id())
.withName(newComment)
.withNamespace(modelEntity.namespace())
.withLatestVersion(modelEntity.latestVersion())
.withAuditInfo(modelEntity.auditInfo())
.withComment(modelEntity.comment())
.withProperties(modelEntity.properties())
.build();
```
Is incorrectly setting the name and comment.
The test testInsertAndUpdateModelProperties has a similar issue.
### How should we improve?
Fix the tests.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]