We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a35e53 commit a3532c2Copy full SHA for a3532c2
itest/src/edu/stanford/nlp/dcoref/DcorefBenchmarkSlowITest.java
@@ -134,7 +134,7 @@ public static Counter<String> getCorefResults(String resultsString) throws IOExc
134
if (results.keySet().isEmpty()) {
135
List<String> lines = StringUtils.split(resultsString, "\\R");
136
int start = Math.max(0, lines.size() - 20);
137
- lines = lines.subList(start, lines.size() - start);
+ lines = lines.subList(start, lines.size());
138
String tail = StringUtils.join(lines, "\n");
139
throw new RuntimeException("Coref output did not have any results in it! The end of the log is as follows:\n" + tail);
140
}
0 commit comments