You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jnosql-cassandra/src/test/java/org/eclipse/jnosql/databases/cassandra/mapping/CassandraColumnEntityConverterTest.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ public void shouldConvertPersonToDocument() {
104
104
105
105
ColumnEntityentity = converter.toColumn(artist);
106
106
assertEquals("Artist", entity.name());
107
-
assertEquals(4, entity.size());
107
+
assertEquals(5, entity.size());
108
108
}
109
109
110
110
@Test
@@ -113,7 +113,7 @@ public void shouldConvertActorToDocument() {
113
113
114
114
ColumnEntityentity = converter.toColumn(actor);
115
115
assertEquals("Actor", entity.name());
116
-
assertEquals(6, entity.size());
116
+
assertEquals(7, entity.size());
117
117
118
118
119
119
assertThat(entity.columns()).contains(columns);
@@ -158,7 +158,7 @@ public void shouldConvertDirectorToColumn() {
0 commit comments