Skip to content

Commit a5ba143

Browse files
Fix long display name line length issue
1 parent 06cebe3 commit a5ba143

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

exercises/practice/relative-distance/src/test/java/RelativeDistanceTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,10 @@ public void testComplexGraphNoShortcutFarRemovedNephew() {
201201

202202
@Disabled("Remove to run test")
203203
@Test
204-
@DisplayName("Complex graph, some shortcuts, cross-down and cross-up, cousins several times removed, with unrelated family tree")
204+
@DisplayName(
205+
"Complex graph, some shortcuts, cross-down and cross-up, " +
206+
"cousins several times removed, with unrelated family tree"
207+
)
205208
public void testComplexGraphSomeShortcutsCrossDownAndCrossUpCousinsSeveralTimesRemovedWithUnrelatedFamilyTree() {
206209
Map<String, List<String>> familyTree = new HashMap<>() {
207210
{

0 commit comments

Comments
 (0)