Skip to content

Commit c914081

Browse files
committed
travis on windows
1 parent a8422d9 commit c914081

File tree

1 file changed

+1
-1
lines changed
  • code-assert/src/test/java/guru/nidi/codeassert/dependency

1 file changed

+1
-1
lines changed

code-assert/src/test/java/guru/nidi/codeassert/dependency/CycleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ private void assertMatcher(String message, DependencyResult result, Matcher<Depe
120120
for (int i = 0; i < message.length() && i < s.length(); i++) {
121121
if (message.charAt(i) != s.charAt(i)) {
122122
System.out.println("%%%% dif at " + i);
123-
System.out.println(message.substring(i - 5, 11) + "--" + s.substring(i - 5, 11));
123+
System.out.println(message.substring(i - 5, i + 6) + "--" + s.substring(i - 5, i + 6));
124124
}
125125
}
126126
assertEquals(message, s);

0 commit comments

Comments
 (0)