Skip to content

Commit 21015b6

Browse files
fix: format
1 parent cb28904 commit 21015b6

File tree

1 file changed

+4
-2
lines changed
  • src/integration-test/java/com/commercetools/sync/integration/ctpprojectsource/categories

1 file changed

+4
-2
lines changed

src/integration-test/java/com/commercetools/sync/integration/ctpprojectsource/categories/CategorySyncIT.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -485,8 +485,10 @@ void syncDrafts_fromCategoriesWithoutKeys_ShouldNotUpdateCategories() {
485485

486486
assertThat(oldCategoryDraft1.getKey()).isNotEqualTo(newCategoryDraft2.getKey());
487487
assertThat(oldCategoryDraft2.getKey()).isNotEqualTo(newCategoryDraft2.getKey());
488-
assertThat(oldCategoryDraft1.getSlug().get(Locale.ENGLISH)).isEqualTo(newCategoryDraft1.getSlug().get(Locale.ENGLISH));
489-
assertThat(oldCategoryDraft2.getSlug().get(Locale.ENGLISH)).isEqualTo(newCategoryDraft2.getSlug().get(Locale.ENGLISH));
488+
assertThat(oldCategoryDraft1.getSlug().get(Locale.ENGLISH))
489+
.isEqualTo(newCategoryDraft1.getSlug().get(Locale.ENGLISH));
490+
assertThat(oldCategoryDraft2.getSlug().get(Locale.ENGLISH))
491+
.isEqualTo(newCategoryDraft2.getSlug().get(Locale.ENGLISH));
490492

491493
final Category targetCat1 =
492494
TestClientUtils.CTP_TARGET_CLIENT

0 commit comments

Comments
 (0)