Skip to content

Commit ec2e7eb

Browse files
fix: format
1 parent 5d6ae00 commit ec2e7eb

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/integration-test/java/com/commercetools/sync/integration/commons/utils/CategoryITUtils.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,7 @@ public static void deleteCategoriesBySlug(
360360
.join();
361361
} catch (NotFoundException e) {
362362
// Already deleted
363-
logger.debug(
364-
"Category with slug '{}' already deleted", slug);
363+
logger.debug("Category with slug '{}' already deleted", slug);
365364

366365
} catch (RuntimeException e) {
367366
// May have been deleted by parent cascade or version conflict
@@ -371,8 +370,7 @@ public static void deleteCategoriesBySlug(
371370
});
372371
} catch (RuntimeException e) {
373372
// Slug doesn't exist or query failed - this is expected
374-
logger.debug(
375-
"Category with slug '{}' does not exist", slug);
373+
logger.debug("Category with slug '{}' does not exist", slug);
376374
}
377375
}
378376
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ void cleanupAfterTest() {
107107
TestClientUtils.CTP_SOURCE_CLIENT,
108108
Locale.ENGLISH,
109109
List.of("furniture1-project-source", "furniture2-project-source"));
110-
110+
111111
// Then clean up everything else
112112
CategoryITUtils.deleteAllCategories(TestClientUtils.CTP_TARGET_CLIENT);
113113
CategoryITUtils.deleteAllCategories(TestClientUtils.CTP_SOURCE_CLIENT);

0 commit comments

Comments
 (0)