File tree 2 files changed +1
-3
lines changed
main/java/org/spacious_team/table_wrapper/csv
test/java/org/spacious_team/table_wrapper/csv
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 27
27
import org .spacious_team .table_wrapper .api .TableCell ;
28
28
29
29
@ ToString
30
- @ EqualsAndHashCode (callSuper = false )
30
+ @ EqualsAndHashCode (callSuper = true )
31
31
public class CsvTableCell extends AbstractTableCell <String , CsvCellDataAccessObject > {
32
32
33
33
@ Getter
Original file line number Diff line number Diff line change 33
33
import java .time .ZoneOffset ;
34
34
import java .time .format .DateTimeFormatter ;
35
35
36
- import static nl .jqno .equalsverifier .Warning .ALL_FIELDS_SHOULD_BE_USED ;
37
36
import static nl .jqno .equalsverifier .Warning .STRICT_INHERITANCE ;
38
37
import static org .junit .jupiter .api .Assertions .*;
39
38
import static org .mockito .Mockito .mock ;
@@ -208,7 +207,6 @@ void testEqualsAndHashCode() {
208
207
EqualsVerifier
209
208
.forClass (CsvTableCell .class )
210
209
.suppress (STRICT_INHERITANCE ) // no subclass for test
211
- .suppress (ALL_FIELDS_SHOULD_BE_USED )
212
210
.verify ();
213
211
}
214
212
You can’t perform that action at this time.
0 commit comments