We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6ce90e commit 302a1d6Copy full SHA for 302a1d6
src/test/java/com/somemore/user/repository/usercommonattribute/UserCommonAttributeRepositoryImplTest.java
@@ -30,6 +30,8 @@ void saveUserCommonAttribute() {
30
31
// then
32
assertThat(savedUserCommonAttribute).isNotNull();
33
+ assertThat(savedUserCommonAttribute).isEqualTo(userCommonAttribute);
34
+
35
assertThat(savedUserCommonAttribute.getId()).isNotNull();
36
assertThat(savedUserCommonAttribute.getUserId()).isEqualTo(userId);
37
assertThat(savedUserCommonAttribute.getImgUrl()).isEqualTo(ImageUploadService.DEFAULT_IMAGE_URL);
0 commit comments