Skip to content

Commit 629d288

Browse files
committed
test: fix test scenaio
Signed-off-by: Otavio Santana <[email protected]>
1 parent 3f6900f commit 629d288

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jnosql-oracle-nosql/src/test/java/org/eclipse/jnosql/databases/oracle/communication/OracleNoSQLDocumentManagerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ void shouldInsertAndRetrieveWithEnum() {
575575
var query = select().from(COLLECTION_NAME)
576576
.where("_id").eq(id).build();
577577
Optional<CommunicationEntity> optional = entityManager.select(query).findFirst();
578-
SoftAssertions.assertSoftly(soft -> {);
578+
SoftAssertions.assertSoftly(soft -> {
579579
soft.assertThat(optional).isPresent();
580580
CommunicationEntity documentEntity = optional.get();
581581
soft.assertThat(documentEntity.find("name").orElseThrow().get(String.class)).isEqualTo("Test Name");

0 commit comments

Comments
 (0)