Fix several tests

This commit is contained in:
Paulo Gustavo Veiga
2024-01-15 17:30:31 -08:00
parent 7d4f51b3ea
commit 832e1991e5
8 changed files with 36 additions and 58 deletions

View File

@@ -39,8 +39,6 @@ public class Label implements Serializable {
private String title;
@NotNull
private String color;
@Nullable
private String iconName;
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "creator_id", nullable = true, unique = true)
@@ -96,15 +94,6 @@ public class Label implements Serializable {
this.color = color;
}
@Nullable
public String getIconName() {
return iconName;
}
public void setIconName(@NotNull String iconName) {
this.iconName = iconName;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;