From d1c7c98e1a939d0ef31e552b79ccdef2f74a57ae Mon Sep 17 00:00:00 2001 From: Jagdish Prajapati Date: Mon, 21 Sep 2026 02:00:07 +0530 Subject: [PATCH] fix: resolve line length check failure --- .../swift-scheduling/src/test/java/SwiftSchedulingTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exercises/practice/swift-scheduling/src/test/java/SwiftSchedulingTest.java b/exercises/practice/swift-scheduling/src/test/java/SwiftSchedulingTest.java index 72352a2d6..a73cb445a 100644 --- a/exercises/practice/swift-scheduling/src/test/java/SwiftSchedulingTest.java +++ b/exercises/practice/swift-scheduling/src/test/java/SwiftSchedulingTest.java @@ -203,7 +203,8 @@ void testQ3InQ4() { @Disabled("Remove to run test") @Test @DisplayName( - "Q2 starting in the last month of the second quarter translates to the last workday of the second quarter of this year" + "Q2 starting in the last month of the second quarter " + + "translates to the last workday of the second quarter of this year" ) void testQ2InQ2() { LocalDateTime meetingStart = LocalDateTime.parse("2019-06-15T09:50:00");